@extends('layouts/contentNavbarLayout') @section('title', 'Customers - Customers List') @section('page-style') @endsection @section('content')

{{-- Role 5 for SuperVioser --}} @if (auth()->user()->role_id == 5) Dashboard / Customers @else Agents / Customers @endif

Customers List of {{ $agent->name }}
@foreach ($customers as $customer) @endforeach
# Name Email Phone Actions
{{ $loop->iteration }}
{{ $customer->name }}
{{ $customer->name }}
{{ $customer->email }} {{ $customer->phone ?? 'N/A' }}
{{-- {{ $customers->links() }} --}}
@endsection