@extends('layouts.app') @section('title', 'Dish Customers - ISP ERP System') @section('page-title', 'Dish Customers Management') @section('content')

Dish Customers

All Customers

@if(session('success'))
{{ session('success') }}
@endif
@if($customers->count() > 0)
@foreach($customers as $customer) @endforeach
Name Phone Address Area Status Actions
{{ $customer->customer_name }} {{ $customer->phone }} {{ Str::limit($customer->address, 30) }} {{ $customer->area->area_name }} {{ ucfirst($customer->status) }}
@csrf @method('DELETE')
{{ $customers->links() }}
@else
No customers found
@endif
@endsection