@extends('layout.app')
@section('title', $title)
@section('description', $description)
@section('content')
@if (session('success'))
{{ session('success') }}
@endif
@foreach($customers as $customer)
|
{{ $customer->email }} |
{{ ucfirst($customer->role) }} |
@if($customer->status == '1')
Active
@else
Inactive
@endif
|
|
@endforeach
@if($customers->isEmpty())
No customers found.
@endif
@endsection