@extends('backend.admin.layouts.app') @section('content')

Dashboard - {{ date('d F Y') }}

{{ App\Models\Order::count() }}

Orders

More info

{{ App\Models\Vendor::count() }}

Vendors/Shops

More info

{{ App\Models\Product::count() }}

Products

More info

{{ App\Models\Category::count() }}

Categories

More info
@php $countryIds = App\Models\BankAccount::pluck('country_id') ->unique() ->values() ->all(); @endphp @foreach ($countryIds as $country_id) @php $bankAccounts = App\Models\BankAccount::where('country_id', $country_id)->get(); $country = App\Models\Country::find($country_id); @endphp

{{ $country->name ?? '' }}

@endforeach

{{ date('F') }}

$35,210.43
TOTAL REVENUE
$35,210.43
TOTAL COST
$35,210.43
TOTAL PROFIT
$35,210.43
Donation
@endsection