@extends('layouts.user') @section('content')

{{ number_format($savings->amount, 2) }}

Current Savings

{{ number_format($savings->amount + $savings->interest, 2) }}

Total Interest on Savings

{{-- Recent Transaction log --}}
Savings Log
@forelse($savings_transactions as $transaction) @empty @endforelse
SN Amount Dec Status Date
{{$loop->iteration}}
₦ {{ number_format($transaction->amount, 2) }}
{{$transaction->description}}
@if($transaction->status == 'success') {{ $transaction->status }} @else {{ $transaction->status }} @endif
{{ $transaction->created_at->format('d M, Y')}}
You have not made any transaction yet
@endsection @section('page-js') @endsection