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

List Client Due

@foreach($data as $row) @endforeach
Custom ID Name Service Plan Created Due Date Balance
{{$row->id}} {{$row->first_name}} {{$row->last_name}} {{$row->product_code}} {{ \Carbon\Carbon::parse($row->invoice_date)->format('d F Y') }} {{\Carbon\Carbon::parse($row->due_date)->format('d F Y')}} -{{$row->due_amount}}
@endsection