@extends('layouts.app') @section('title', 'Managers Accounts') @section('content')

Managers Accounts

Manage accounts for Managers

Add Manager
@if(session('success')) @endif
Total Managers

{{ $operationsManagers->total() }}

Active

{{ $activeCount }}

Inactive

{{ $inactiveCount }}

Managers Accounts
@forelse($operationsManagers as $manager) @empty @endforelse
Name Email Role Status Created Actions
{{ $manager->name }} {{ $manager->email }} {{ $manager->role }} @if($manager->is_active) Active @else Inactive @endif {{ $manager->created_at?->format('d M Y') }}
Edit
@csrf @method('DELETE')
No managers found.
@if($operationsManagers->hasPages()) @endif
@endsection