@extends('template.app') @section('title', 'Bank') @section('css') @endsection @section('breadcrumb') @endsection @section('content')
@include('components.toast-notification')
@foreach($bank as $b) @endforeach
Logo Bank Cabang Nomor Rekening Nama Pemilik Kode SWIFT Kredit Debit Saldo Aksi
@if($b->logo) Logo Bank @else Tidak ada logo @endif {{ $b->bank_name }} {{ $b->branch }} {{ $b->account_number }} {{ $b->account_name }} {{ $b->swift_code }} Rp {{ number_format($b->Kredit, 2, ',', '.') }} Rp {{ number_format($b->Debit, 2, ',', '.') }} Rp {{ number_format($b->Kredit - $b->Debit, 2, ',', '.') }}
@endsection @section('js') @endsection