{{ __('Revenue vs Expenses breakdown') }}
{{ __($months[$month]) }} {{ $year }}
{{ __('By category') }}
{{ __('Revenue vs Expenses') }}
{{ __('Detailed list of purchased items for this month') }}
| {{ __('Date') }} | {{ __('Item / Title') }} | {{ __('Ref No.') }} | {{ __('Amount') }} |
|---|---|---|---|
| {{ $item->expense_date->format('d M, Y') }} |
{{ $item->title }}
@if($item->description)
{{ Str::limit($item->description, 50) }}
@endif
|
{{ $item->reference_no ?? '-' }} | ৳{{ number_format($item->amount, 2) }} |
{{ __('Detailed list of employee payments & claims for this month') }}
| {{ __('Date') }} | {{ __('Employee / Purpose') }} | {{ __('Ref No.') }} | {{ __('Amount') }} |
|---|---|---|---|
| {{ $bill->expense_date->format('d M, Y') }} |
{{ $bill->title }}
@if($bill->description)
{{ Str::limit($bill->description, 50) }}
@endif
|
{{ $bill->reference_no ?? '-' }} | ৳{{ number_format($bill->amount, 2) }} |