@extends('layouts.finance') @section('title', 'Detail Akun') @section('page-title', 'Detail Akun') @section('content')

Detail Akun

{{ $account->type_label }}

{{ $account->name }}

@if($account->type === 'paylater')

Limit: Rp {{ number_format($account->limit ?: 0, 0, ',', '.') }} • Digunakan: Rp {{ number_format($account->limit - $account->balance, 0, ',', '.') }}

@endif

Saldo Saat Ini

Rp {{ number_format($account->balance, 0, ',', '.') }}

Informasi Akun

Nama Akun

{{ $account->name }}

Tipe Akun

{{ $account->type_label }}

@if($account->type === 'paylater' && $account->limit)

Limit Paylater

Rp {{ number_format($account->limit, 0, ',', '.') }}

@endif

Saldo

Rp {{ number_format($account->balance, 0, ',', '.') }}

@if($account->note)

Catatan

{{ $account->note }}

@endif

ID Akun

#{{ str_pad($account->id, 6, '0', STR_PAD_LEFT) }}

Dibuat {{ $account->created_at->diffForHumans() }}

Edit Akun
@csrf @method('DELETE')
Kembali

Transaksi Terakhir

Lihat Semua

Memuat transaksi...

@endsection @push('scripts') @endpush