@extends('layout.main') @section('title', 'Detail Pindah Kas') @section('prev-page') Home - Daftar Pindah Kas @endsection @section('content')
Detail Pindah Kas
{{ date_format(date_create($detail->date), 'd F Y') }}
{{ $detail->source->account->name }}
Rp{{ number_format($detail->source->amount, 0, ',', '.') }}
 
{{ $detail->destination->account->name }}
Rp{{ number_format(abs($detail->source->amount - $detail->destination->amount), 0, ',', '.') }}
@endsection @section('other-scripts') @endsection