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

Active Customers Report

@foreach ($rows as $row) @endforeach
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)) : '' }}
@endsection @push('scripts') @endpush