@extends('layouts.admin') @section('content')

Customers

@forelse($customers as $customer) @empty @endforelse
Name Email Mobile Active
{{ $customer->name }} {{ $customer->email }} {{ $customer->phone ? '+91 ' . substr($customer->phone, -10) : '-' }} @if($customer->is_active) Active @else Inactive @endif
No customers found.
{{ $customers->links('components.pagination') }}
@endsection