@extends('layouts.app') @section('title', 'Detail Setoran') @push('style') {{-- sweetalert2 --}} {{-- Data Table --}} {{-- --}} {{-- Select 2 --}} @endpush @section('main')
Halaman untuk mengelola data transaksi.
| Bendahara | : {{ $setoran->createds->name ?? null }} | Bank | : {{ $setoran->banks->bank ?? null }} | ||||
| Tanggal Setoran | : {{ $setoran->deposited_at ? $setoran->deposited_at->locale('id')->translatedFormat('d F Y') : null }} | Tanggal Validasi | : {{ $setoran->confirmed_at ? $setoran->confirmed_at->locale('id')->translatedFormat('d F Y') : null }} | ||||
Data Setoran |
|||||||
| Total | : {{ 'Rp' . number_format($setoran->total, 0, ',', '.') }} | Total Disetorkan | : {{ 'Rp' . number_format($setoran->daerah + $setoran->wilayah + $setoran->pusat + $setoran->markas, 0, ',', '.') }} | ||||
|
|
|||||||
| IBK | : {{ 'Rp' . number_format($setoran->ibk, 0, ',', '.') }} | Kelas | : {{ 'Rp' . number_format($setoran->kelas, 0, ',', '.') }} | ||||
| IBS | : {{ 'Rp' . number_format($setoran->ibs, 0, ',', '.') }} | Daerah | : {{ 'Rp' . number_format($setoran->daerah, 0, ',', '.') }} | ||||
| IBP | : {{ 'Rp' . number_format($setoran->ibp, 0, ',', '.') }} | Wilayah | : {{ 'Rp' . number_format($setoran->wilayah, 0, ',', '.') }} | ||||
| IBKs | : {{ 'Rp' . number_format($setoran->ibks, 0, ',', '.') }} | Pusat | : {{ 'Rp' . number_format($setoran->pusat, 0, ',', '.') }} | ||||
| IIP | : {{ 'Rp' . number_format($setoran->iip, 0, ',', '.') }} | Markas | : {{ 'Rp' . number_format($setoran->markas, 0, ',', '.') }} | ||||