@extends('layouts.app') @section('title', 'Finance Transactions') @section('content') @include('super-admin.partials.nav') Dashboard
@csrf

Record transaction

@forelse ($transactions as $txn) @empty @endforelse
Date Type Amount Account Description Status
{{ $txn->txn_date?->format('Y-m-d') ?? $txn->txn_date }} {{ $txn->type }} {{ number_format((float) $txn->amount, 2) }} {{ $txn->account?->name ?? '—' }} {{ $txn->description }} {{ $txn->status }} @if ($txn->status === 'posted')
@csrf
@endif
No transactions.
{{ $transactions->links() }}
@endsection