@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 Name Phone City Orders Actions @foreach ($customers as $customer) {{ $customer->name }} {{ $customer->phone ?? '—' }} {{ $customer->city ?? '—' }} {{ $customer->orders_count }} @csrf @method('DELETE') @endforeach {{ $customers->links() }} @endif @endsection
No customers yet.
Add customers to attach to orders, or create them inline from the order screen.