@extends('layouts.admin') @section('content')
বিলম্বিত বিলের তালিকা
@php $amount=0; @endphp @foreach($invoices as $invoice) @endforeach
Invoice date Client Amount Last payment date
{{$invoice->created_at->format('d M, Y')}} {{$invoice->ppp->name}}
{{$invoice->ppp->comments}}
@php $amount=$amount+$invoice->amount; @endphp Tk. {{number_format($invoice->amount,2)}} {{$invoice->last_pay_date->format('d M, Y')}} Process
@endsection