@extends('layout.app') @section('title', $title) @section('description', $description) @section('content')
@if (session('success'))
{{ session('success') }}
@endif
@foreach($customers as $customer) @endforeach
customername Email Role Status Action
{{ $customer->name }}
{{ $customer->email }}
{{ ucfirst($customer->role) }}
@if($customer->status == '1') Active @else Inactive @endif
@if($customers->isEmpty())

No customers found.

@endif
@endsection