@extends('layouts.admin') @section('title', 'Customers · Aromaniacs ERP') @section('overline', 'CRM') @section('heading', 'Customers') @section('content')
@if ($search !== '') @endif
@if ($customers->isEmpty())

No customers yet.

Add customers to attach to orders, or create them inline from the order screen.

@else @foreach ($customers as $customer) @endforeach
Name Phone City Orders Actions
{{ $customer->name }} {{ $customer->phone ?? '—' }} {{ $customer->city ?? '—' }} {{ $customer->orders_count }}
@csrf @method('DELETE')
{{ $customers->links() }}
@endif
@endsection