Customers

Manage corporate and retail client accounts, details, and activity.

Export
@forelse($customers as $customer) @empty @endforelse
NAME EMAIL ADDRESS PHONE CREATED ON ACTIONS
{{ mb_substr($customer->name ?? 'N', 0, 1) }}
{{ $customer->name }}
{{ $customer->email }} {{ $customer->address }} {{ $customer->phone }} {{ $customer->created_at->format('M d, Y h:i A') }}
@csrf @method('PATCH')
No Customer found.
@if ($customers->hasPages())
@include('partials.pagination', ['paginator' => $customers])
@endif
@csrf @method('POST')
@if ($errors->any() && old('_method') !== 'PATCH')

Please correct the validation errors below.

@endif
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('address') {{ $message }} @enderror
@error('city') {{ $message }} @enderror
@error('state') {{ $message }} @enderror
@error('zipcode') {{ $message }} @enderror
@csrf @method('PATCH')
@if ($errors->any() && old('_method') === 'PATCH')

Please correct the validation errors below.

@endif
@error('name') {{ $message }} @enderror
@error('email') {{ $message }} @enderror
@error('phone') {{ $message }} @enderror
@error('address') {{ $message }} @enderror
@error('city') {{ $message }} @enderror
@error('state') {{ $message }} @enderror
@error('zipcode') {{ $message }} @enderror