@extends('layouts.app') @section('content')
@can('manage_dashboard_cards')

Today Invoices

{{ round($data['today_sales_count'], 2) }}

Today Sales Amount

{{ number_format($data['today_sales'], 2) }}

This Month Sales

{{ number_format($data['month_sales'], 2) }}
@endcan @can('manage_dashboard_daywise_chart')
Last 7 Days Sales
@endcan
@endsection @push('scripts') @can('manage_dashboard_daywise_chart') @endcan @endpush