@extends('front.layouts.app-auth') @push('page_css') @endpush @section('content')
| Date | Campaign | Description | Reference | Amount | Balance After | Status |
|---|---|---|---|---|---|---|
|
{{ $formattedDate }}
{{ $formattedTime }}
|
@if($transaction->campaign) @else -- @endif |
{{ $transaction->title ?? 'Transaction' }}
@if(isset($transaction->description) && $transaction->description)
{{ \Illuminate\Support\Str::limit($transaction->description, 50) }}
@endif
|
@if(isset($transaction->reference_number) && $transaction->reference_number)
{{ \Illuminate\Support\Str::limit($transaction->reference_number, 20) }}
@else
--
@endif
|
{{ $formattedAmount }}
|
{!! \App\Helpers\Helper::price($transaction->balance_after ?? 0) !!}
|
{{ $transaction->status_label['name'] }} |
|
No transactions found
Start by making a transaction to see it here.
|
||||||