Other Income Report
{{ App\Helpers\StringHelper::dateTimeFormat($start_date) }} ~ {{ App\Helpers\StringHelper::dateTimeFormat($end_date) }}
លេខរៀង | ស្ថានភាព | កាលបរិច្ឆេទចំណូល | លេខកូដ | ប្រភេទគណនីយ | ទឹកប្រាក់សរុប | ការកត់សម្គាល់ |
{{ $index + 1}} | @if ($item->status==1) រង់ចាំ @else បានបញ្ចប់ @endif | {{ App\Helpers\StringHelper::dateTimeFormat($item->income_date) }} | {{ $item->code }} | {{ $item->accounting_type }} | {{$item->pdf_symbol}} {{ $item->total_amount }} | {{ $item->remark }} |
@if ($boolean)
Total By Currency / សរុបតាមរូបិយប័ណ្ណ
@foreach ($total_by_currency as $item)
@if ($item['total'] != $total_default_currency['total'])
@if ($item['total'] != 0)
: {{ $item['pdf_symbol'] }} {{ $item['total'] }} @endif @endif @endforeach @endif |
|||||
Total / សរុបចុងក្រោយ
:
{{$total_default_currency['symbol']}} {{$total_default_currency['total'] }}
|
@foreach ($total_by_currency as $item)
@if ($item['total'] != $total_default_currency['total'])
@if ($item['total'] != 0)
@php
echo ' Total By Currency / សរុបតាមរូបិយប័ណ្ណ
:
' . $item['symbol'] . ' ' . $item['total'] . ' '; @endphp @endif @endif @endforeach |
|||||
@foreach ($total_by_currency as $item)
@if ($item['symbol'] == $total_default_currency['symbol'])
Total / សរុបចុងក្រោយ
:
{{$total_default_currency['symbol']}} {{$total_default_currency['total']}}
@endif
@endforeach
|