@php $page = 'admins' @endphp @extends('includes.layout') @section('content')

Manage Admins

Admin Lists

@php $counter = 1; @endphp @forelse ($users as $item) @php $counter++; @endphp @empty

No Admin Found

@endforelse
S/N Name Username Email Phone Type Status Action
{{ $counter }} {{ $item->name }} {{ $item->username }} {{ $item->email }} {{ $item->phone }} {{ Str::ucfirst($item->role) }} {{ Str::ucfirst($item->status) }}
@endsection @push('scripts') @endpush