@extends('layouts.app') @section('content')
Summary
{{ date('d M, Y',strtotime($summary->date)) }}
{{ $summary->collections ? number_format($summary->collections) : 0 }}
{{ $summary->collections ? number_format($summary->withdrawals) : 0 }}
{{ $summary->collections ? number_format($summary->balance) : 0 }}
@csrf
Add Withdraw
Withdraws
@foreach($summary->withdraws_list as $withdraw) @endforeach
Person Amount Naration
{{ $withdraw->person }} {{ $withdraw->amount?number_format($withdraw->amount):'0' }} {{ $withdraw->narration }}
@endsection