@extends('layouts.admin') @section('title', 'Customers') @section('breadcrumb')
| Name | 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 |
| No customers found. | |||||