@include('backend.layouts.partials.messages')
| # |
No Expense |
Nama |
Region |
Cabang |
Rayon |
Tanggal |
Tujuan |
Jarak |
Total |
Total Approved |
Account Number |
Status |
@foreach ($forms as $item)
| {{ $loop->iteration }} |
{{ $item->expense_number }} |
{{ $item->user->name }} |
{{ $item->user->region->cabang->region->name }} |
{{ $item->user->cabang->cabang->name }} |
{{ $item->rayon->code }} |
{{ \Carbon\Carbon::parse($item->tanggal)->locale('id')->isoFormat('D MMMM Y') }} |
{{ $item->tujuan }} |
{{ $item->jarak }} km |
{{ number_format($item->total, 0, ',', '.') }} |
@if ($item->approved_total)
{{ number_format($item->approved_total, 0, ',', '.') }}
@else
-
@endif
|
{{ $item->account_number }} |
@if ($item->status == 'On Progress')
{{ $item->status }}
@elseif ($item->status == 'Approved' || $item->status == 'Final Approved')
{{ $item->status }}
@else
{{ $item->status }}
@endif
|
@endforeach