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

Customers

@include('validate')

Customers List

@csrf
@forelse ($customersList as $customer) @empty @endforelse
Customer Name Mobile Email State Total Orders Action
{{ $customer->customer_name }} {{ $customer->mobile_no }} {{ $customer->email_address }} {{ $customer->state->state_name ?? '' }} 0
@lang('general.no_details_found')
@endsection @push('scripts') @endpush