@extends('layouts.app') @section('title', 'Detail Setoran') @push('style') {{-- sweetalert2 --}} {{-- Data Table --}} {{-- --}} {{-- Select 2 --}} @endpush @section('main')

Detail Setoran

Halaman untuk mengelola data transaksi.

Data Setoran
{{-- --}}
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, ',', '.') }}
Table Iuran
{{ $dataTable->table() }}
@endsection @push('script') {{-- Library Jquery --}} {{-- Sweetalert2 --}} {{-- Library Data Table --}} {{-- Validation --}} {{ $dataTable->scripts() }} {{-- Select 2 --}} {{-- Costom Alert --}} @endpush