@extends('admin.layouts.app') @section('title', 'Expired Packages Report') @push('styles') @endpush @section('content')

Expired Packages Customers

@forelse ($customers as $row) @empty @endforelse
Name Phone Expired On Status Renew Address
{{ trim($row->Fname.' '.$row->Lname) }} {{ $row->Phone }} {{ $row->Validity ? $row->Validity->format('d-M-Y') : '' }} Expired Renew {{ $row->Address }}
No expired customers found.
@endsection @push('scripts') @endpush