@extends('layouts.app') @section('page-title', 'Customers') @section('content')
| Name | Phone | Address | Actions | |
|---|---|---|---|---|
| {{ $customer->name }} | {{ $customer->email ?? '-' }} | {{ $customer->phone ?? '-' }} | {{ substr($customer->address ?? '', 0, 50) }}{{ strlen($customer->address ?? '') > 50 ? '...' : '' }} | Edit |
No customers found. Create one now
@endif