@extends('layouts.app') @section('title', 'customer') @section('content')

Customer List

A customer dashboard lets you easily gather and visualize customer data from optimizing
the customer experience, ensuring customer retention.

Add Customer
@forelse($customers as $customer) {{-- Checkbox --}} {{-- Customer Name --}} {{-- Phone --}} {{-- Shop --}} {{-- Area --}} {{-- Actions --}} @empty @endforelse
Name Phone No. Shop name Area Name Action
{{ $customer->customer_name }} {{ $customer->customer_phonenum }} {{ $customer->shop_name }} {{ $customer->area?->area_name ?? 'N/A' }}
{{-- View --}} {{-- Edit --}} {{-- Delete --}}
@csrf @method('DELETE')
No customers found.
@endsection