@extends('layouts.admin') @section('title', 'Customers') @section('content')
| Code | Name | Phone | City | Status | Added By | Actions | |
|---|---|---|---|---|---|---|---|
| {{ $customer->customer_code }} | {{ $customer->name }} | {{ $customer->phone }} | {{ $customer->email ?? '—' }} | {{ $customer->city ?? '—' }} | @if ($customer->status === 'active') Active @else Inactive @endif | {{ $customer->addedBy?->name ?? '—' }} | |
| No customers found. | |||||||