@extends('layouts.app') @section('title', 'Staff Management') @section('page-title', 'Staff Management') @section('content') {{-- Header --}}
Manage all admin and staff accounts
| Mobile | @include('partials._sort_th', ['column' => 'role', 'label' => 'Role'])Status | @include('partials._sort_th', ['column' => 'created_at', 'label' => 'Created'])Actions | |||
|---|---|---|---|---|---|
|
{{ strtoupper(substr($member->name, 0, 1)) }}
{{ $member->name }}
@if($member->id === auth()->id())
You
@endif
{{ $member->email }}
|
{{ $member->mobile ?? '—' }} | @if($member->isAdmin()) Admin @else Staff @endif | @if($member->is_active) Active @else Inactive @endif | {{ $member->created_at->format('d M Y') }} |