Balance: £{{ $balance }}
Transaction History
| Type | Amount | Description | Date |
|---|---|---|---|
| {{ ucfirst($transaction->type) }} | £{{ $transaction->amount }} | {{ $transaction->description }} | {{ $transaction->created_at->format('Y-m-d H:i') }} |
@extends('layouts.master')
@section('content')
Balance: £{{ $balance }}
Transaction History
@foreach($transactions as $transaction)
Type
Amount
Description
Date
@endforeach
{{ ucfirst($transaction->type) }}
£{{ $transaction->amount }}
{{ $transaction->description }}
{{ $transaction->created_at->format('Y-m-d H:i') }}