@extends('layouts.admin') @section('title', 'Customers') @section('breadcrumb') @endsection @section('content')

Customers List

@forelse($customers as $customer) @empty @endforelse
Name Email Phone Address Member? Actions
{{ $customer->name }} {{ $customer->email ?? 'N/A' }} {{ $customer->phone ?? 'N/A' }} {{ Str::limit($customer->address, 30) ?? 'N/A' }} @if($customer->is_member) Yes @else No @endif Edit
@csrf @method('DELETE')
No customers found.
@endsection