@extends('admin.layouts.app') @section('panel')
@forelse($allStaff as $staff) @empty @endforelse
@lang('S.N.') @lang('Username') @lang('Name') @lang('Email') @lang('Role') @lang('Status') @lang('Action')
{{ $loop->index + $allStaff->firstItem() }} {{ $staff->username }} {{ __($staff->name) }} {{ $staff->email }} @if ($staff->role) {{ __($staff->role->name) }} @else @lang('Super Admin') @endif @php echo $staff->statusBadge; @endphp
@if ($staff->id > 1) @can('admin.staff.save') @endcan @can('admin.staff.status') @if ($staff->status) @else @endif @endcan @can('admin.staff.login') @lang('Login') @endcan @endif
{{ __($emptyMessage) }}
@if ($allStaff->hasPages()) @endif
@endsection @push('breadcrumb-plugins') @can('admin.staff.save') @endcan @endpush @push('script') @endpush