@extends('admin.layouts.dashboard') @section('title', 'Customers') @section('content')
| Sr No | Name | Phone | Telephone | City | Country | Remarks | Actions | |
|---|---|---|---|---|---|---|---|---|
| {{ ($customers->currentPage() - 1) * $customers->perPage() + $loop->iteration }} | {{ $c->name }} | {{ $c->phone ?: '—' }} | {{ $c->telephone_no ?: '—' }} | {{ $c->email ?: '—' }} | {{ $c->city ?: '—' }} | {{ $c->country ?: '—' }} | {{ $c->remarks ? \Illuminate\Support\Str::limit($c->remarks, 40) : '—' }} | |
| @if(request()->filled('search')) No customers match your search. @else No customers yet. Add them from Admin Booking. @endif | ||||||||