@extends('admin.layouts.main') @section('title', 'Customer List') @section('menu', 'Customers') @section('content')
@forelse($customers as $customer) @empty @endforelse
ID Name Email Phone Company Status Registered Actions
{{ $customer->id }} {{ $customer->first_name }} {{ $customer->last_name }} {{ $customer->email }} {{ $customer->phone_cc ? $customer->phone_cc . ' ' : '' }}{{ $customer->phone ?? '-' }} {{ $customer->company ?? '-' }} {{ ucfirst($customer->status) }} {{ $customer->created_at->format('M d, Y') }}
No customers found
@if($customers->hasPages()) @endif
@endsection