@extends('layouts.app') @section('title', 'Customers') @section('page-title', 'Customers') @section('breadcrumbs')
| Code | Name | Company | Phone | Invoices | Status | Actions | |
|---|---|---|---|---|---|---|---|
| {{ $customer->customer_code }} | {{ $customer->name }} | {{ $customer->company_name ?? '-' }} | {{ $customer->phone ?? '-' }} | {{ $customer->email ?? '-' }} | {{ $customer->invoices_count }} | {{ ucfirst($customer->status) }} | @if (auth()->user()->isAdmin()) @endif |
| No customers found. | |||||||