Customers Customer Module Customers

Manage your customer records

Use this module to keep client and institute delivery details ready before the order form workflow goes live.

Search
@forelse ($customers as $customer)

{{ $customer->name }}

{{ $customer->company ?: 'Not added yet' }}

{{ $customer->is_active ? 'Active' : 'Inactive' }}

{{ Str::limit($customer->delivery_address, 80) ?: 'No delivery address' }}

{{ $customer->contact_person ?: 'No contact person' }}

{{ $customer->contact_no ?: 'No contact no.' }}

{{ collect([$customer->city, $customer->country])->filter()->join(', ') ?: 'No location' }}

@empty
No customers yet. Add your first customer to start building the order workflow.
@endforelse
{{ $customers->links() }}