@extends('admin.layouts.app') @section('title', 'Active Customers Report') @push('styles') @endpush @section('content')
| Name | Phone | Address | Package Expiry | Registered |
|---|---|---|---|---|
| {{ $row->Fname }} {{ $row->Lname }} | {{ $row->Phone }} | {{ $row->Address }} | {{ $row->Validity ? date('d-M-Y', strtotime($row->Validity)) : 'N/A' }} | {{ $row->CreatedDate ? date('d-M-Y', strtotime($row->CreatedDate)) : '' }} |