@extends('layouts.frontend-master') @section('title', 'Home') @push('style') @endpush @php $loan = \App\Models\Loan::where('member_id', auth()->user()->member->id ?? '') ->orderBy('id', 'desc') ->first(); @endphp @section('content')

Wallet Transactions

@forelse ($transactions as $transaction) @empty @endforelse
Date Amount Status
{{ $transaction->created_at->format('d-m-Y') }} {{ number_format($transaction->amount ?? 0) }} {{ $settings_->where('key', 'currency')->first()->value ?? '' }} {{ $transaction->status ?? '' }}
No transactions found
@endsection