| Account Name |
VALUES |
@foreach ($currencies as $row)
|
{{ $row->title_en }}
|
@endforeach
| Purchase/حریداری |
@foreach ($currencies as $row)
{{ $purchase->where('currency_id', $row->id)->sum('grand_total') }}
|
@endforeach
| Purchase Payment/تادیه حریداری |
@foreach ($currencies as $row)
{{ $payment->where('currency_id', $row->id)->sum('amount') }}
|
@endforeach
| Expences/مصارف |
@foreach ($currencies as $row)
{{ $expencies->where('currency_id', $row->id)->sum('amount') }}
|
@endforeach
| Stuff Overtime MT/کارمندانو اضافه کاری |
@foreach ($currencies as $row)
{{ $overtimes->where('currency_id', $row->id)->where('type_id', 1)->sum('amount') }}
|
@endforeach
| Stuff Overtime None MT/کارمندانو اضافه کاری |
@foreach ($currencies as $row)
{{ $overtimes->where('currency_id', $row->id)->where('type_id', 2)->sum('amount') }}
|
@endforeach
| Stuff Advance MT/کارمندانو پیشکی |
@foreach ($currencies as $row)
{{ $advances->where('currency_id', $row->id)->where('type_id', 1)->sum('payment') }}
|
@endforeach
| Stuff Advance None MT/کارمندانو پیشکی |
@foreach ($currencies as $row)
{{ $advances->where('currency_id', $row->id)->where('type_id', 2)->sum('payment') }}
|
@endforeach
| Stuff Salary MT/کارمندانو تنخوا |
@foreach ($currencies as $row)
{{ $salaries->where('currency_id', $row->id)->where('type_id', 1)->sum('net_salary') }}
|
@endforeach
| Stuff Salary None MT/کارمندانو تنخوا |
@foreach ($currencies as $row)
{{ $salaries->where('currency_id', $row->id)->where('type_id', 2)->sum('net_salary') }}
|
@endforeach