@extends('layouts.adminlte') @section('title','Dashboard') @section('content')

Dashboard

Sites

{{ $siteCount }}

Manage
Vendors

{{ $vendorCount }}

Manage
Particulars

{{ $particularCount }}

Manage
Vouchers

{{ $voucherCount }}

Posted total: ₹ {{ number_format($voucherTotal,2) }}
Recent Vouchers
@forelse($recentVouchers as $v) @empty @endforelse
Voucher NoDateSiteVendorAmount
{{ $v->voucher_no }} {{ $v->voucher_date->format('d-m-Y') }} {{ $v->site->name }} {{ $v->vendor->name }} ₹ {{ number_format($v->amount,2) }} View
No vouchers found.
@endsection