{{-- Header --}}

Customers

Manage your customer database

Add Customer
@if (session()->has('message'))

{{ session('message') }}

@endif @if (session()->has('error'))

{{ session('error') }}

@endif
@if($search || $typeFilter || $statusFilter !== '')
@endif
@forelse($customers as $customer) @empty @endforelse
Code Customer Contact Location Type Status Actions
{{ $customer->code }}
{{ $customer->name }}
@if($customer->owner_name)
{{ $customer->owner_name }}
@endif
{{ $customer->phone }}
@if($customer->email)
{{ $customer->email }}
@endif
{{ $customer->city }}, {{ $customer->province }} {{ $customer->type_name }} {{ $customer->is_active ? 'Active' : 'Inactive' }}

No customers found

Start by adding your first customer

@if($customers->hasPages())
{{ $customers->links() }}
@endif