Form Up Country
| # | No Expense | Nama | Cabang | Rayon | Tanggal | Tujuan | Jarak | Total | Total Approved | Account Number | Status |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->expense_number }} | {{ $item->user->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 |
Form Vehicle Running Cost
| # | Nama | Cabang | Tanggal | Liter | Total | Total Approved | Jarak | Tipe Bensin | Nomor Polisi | Bukti | Account Number | Status |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->user->name }} | {{ $item->user->cabang->cabang->name }} | {{ \Carbon\Carbon::parse($item->tanggal)->locale('id')->isoFormat('dddd, D MMMM Y HH:mm:ss') }} | {{ $item->liter }} | {{ number_format($item->total, 0, ',', '.') }} | {{ number_format($item->approved_total, 0, ',', '.') }} | {{ $item->jarak }} km | {{ $item->tipe_bensin }} | {{ $item->nopol }} | @if ($item->bukti_total) Download @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 |
Form Entertainment Presentation
| # | User | Cabang | Nama Penerima | Tanggal | Jenis | Keterangan | Total | Total Approved | Bukti | Account Number | Status |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->user->name }} | {{ $item->user->cabang->cabang->name }} | {{ $item->name }} | {{ \Carbon\Carbon::parse($item->tanggal)->locale('id')->isoFormat('D MMMM Y') }} | {{ $item->jenis }} | {{ $item->keterangan }} | {{ number_format($item->total, 0, ',', '.') }} | {{ number_format($item->approved_total, 0, ',', '.') }} | @if ($item->bukti_total) Download @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 |
Form Meeting Seminar
| # | No Expense | Nama | Cabang | Tanggal | Allowance | Transport Ankot | Hotel | Total | Total Approved | Account Number | Status |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->expense_number }} | {{ $item->user->name }} | {{ $item->user->cabang->cabang->name }} | {{ \Carbon\Carbon::parse($item->created_at)->locale('id')->isoFormat('D MMMM Y') }} | {{ number_format($item->allowance, 0, ',', '.') }} | {{ number_format($item->transport_ankot, 0, ',', '.') }} | {{ number_format($item->hotel, 0, ',', '.') }} | {{ number_format($item->total, 0, ',', '.') }} | {{ number_format($item->approved_total, 0, ',', '.') }} | {{ $item->account_number }} | @if ($item->status == 'On Progress') {{ $item->status }} @elseif ($item->status == 'Approved' || $item->status == 'Final Approved') {{ $item->status }} @else {{ $item->status }} @endif |
Form Others
| # | Nama | Cabang | Tanggal | Jenis | Keterangan | Total | Bukti Total | Account Number | Status |
|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $item->user->name }} | {{ $item->user->cabang->cabang->name }} | {{ \Carbon\Carbon::parse($item->tanggal)->locale('id')->isoFormat('D MMMM Y') }} | {{ $item->kategori->name }} | {{ $item->keterangan }} | {{ number_format($item->total, 0, ',', '.') }} | @if ($item->bukti_total) Download @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 |