@extends('admin.layouts.main') @php $page_name = 'Customers'; @endphp @section('content')

All Customers

Reset
@forelse ($customers as $customer) @empty @endforelse
Name Mobile Wallet Actions
{{ $customer->name }} {{ $customer->mobile }} ₹{{ $customer->wallet }} {{-- Microsite Info --}} @if ($customer->microsite)
Microsite: {{ $customer->microsite->company_name }}
@endif {{-- Action Links --}} {{-- Activation Toggle Button --}}
{{-- Remove from Microsite Button --}} @if ($customer->micro_site)
@endif View Profile
No customers found.
{{ $customers->appends(request()->query())->links('pagination::bootstrap-5') }}
@endsection @push('script') @endpush