@extends('app-new') @push('content-header') @endpush @push('head-script') @endpush @section('content')
@foreach($customers as $i => $c) @endforeach
# Display Name Company First Last Phone Whatsapp Email Status Created Action
{{ $i + 1 }} {{ $c->display_name }} {{ $c->company_name }} {{ $c->first_name }} {{ $c->last_name }} {{ $c->phone_number }} {{ $c->whatsapp_number }} {{ $c->email }} {{ $c->status == 1 ? 'Active' : 'Inactive' }} {{ $c->created_at->format('Y-m-d') }} Edit
@csrf @method('DELETE')
@endsection {{-- ================= FOOTER SCRIPTS ================= --}} @push('footer-script') {{-- ✅ REQUIRED: jQuery FIRST --}} {{-- DataTables --}} @endpush