@extends('layouts.app') @section('title', 'Customers') @section('content')
| # | Customer | Mobile | Type | NID | City | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ $loop->iteration + ($customers->currentPage() - 1) * $customers->perPage() }} |
@if($customer->photo)
{{ $customer->initial }}
@endif
{{ $customer->name }}
@if($customer->father_name)
s/o {{ $customer->father_name }}
@endif
|
{{ $customer->mobile }} | {{ $customer->type_label }} | {{ $customer->nid ?? '—' }} | {{ $customer->city ?? '—' }} | {{ $customer->is_active ? 'Active' : 'Inactive' }} | @haspermission('customers.edit') @endhaspermission @haspermission('customers.delete') @endhaspermission |
Try adjusting your search or filter criteria.
@elseAdd your first customer to get started.
@endif