@extends('admin.layouts.app') @section('title', 'Garage Customers') @section('content')
| Code | Name | Phone | Status | Actions | |
|---|---|---|---|---|---|
| {{ $customer->code }} | {{ $customer->name }}@if(!empty($customer->last_name)) {{ $customer->last_name }}@endif | {{ $customer->phone ?: '—' }} | {{ $customer->email ?: '—' }} | {{ $customer->is_active ? 'Active' : 'Inactive' }} | |
| No customers found. | |||||