@extends('layout.mainlayout') @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@foreach($withdraws as $w) @endforeach
Date Amount (Tsh) Description Recorded By
{{ \Carbon\Carbon::parse($w->date)->format('d M Y') }} {{ number_format($w->amount, 2) }} {{ $w->description ?? '-' }} {{ $w->user_name ?? 'System' }}
@endsection