@extends('layouts.app') @section('title', 'Home') @section('breadcrumb') @endsection @section('content')
@can('show_total_stats')
{{ format_currency($revenue) }}
Revenue
{{ format_currency($sale_returns) }}
Sales Return
{{ format_currency($purchase_returns) }}
Purchases Return
{{ format_currency($profit) }}
Profit
@endcan @can('show_weekly_sales_purchases|show_month_overview')
@can('show_weekly_sales_purchases')
Sales & Purchases of Last 7 Days
@endcan @can('show_month_overview')
Overview of {{ now()->format('F, Y') }}
@endcan
@endcan @can('show_monthly_cashflow')
Monthly Cash Flow (Payment Sent & Received)
@endcan
@endsection @section('third_party_scripts') @endsection @push('page_scripts') @vite('resources/js/chart-config.js') @endpush