{{ __('Customers') }}

@can('create', \App\Domain\MasterData\Models\Customer::class) {{ __('New Customer') }} @endcan
{{ __('Filter') }} {{ __('Reset') }}
@forelse ($customers as $customer) @empty @endforelse
{{ __('Name') }} {{ __('Code') }} {{ __('Phone') }} {{ __('Loyalty') }} {{ __('Status') }} {{ __('Actions') }}
{{ $customer->name }} {{ $customer->code ?? '—' }} {{ $customer->phone ?? '—' }} {{ $customer->loyalty_points }} @can(\App\Domain\Sales\Support\SalesPermissions::VIEW) {{ __('History') }} @endcan @can('update', $customer) {{ __('Edit') }} @endcan
{{ __('No customers found.') }}
{{ $customers->links() }}