@extends('admin.layouts.app') @section('content')
@can('staff-create') Add Staff @endcan
@forelse ($list as $key=>$data) @empty @endforelse
# Name Email Roles Action
{{($key+1) + ($list->currentPage() - 1)*$list->perPage()}} {{$data->name}} {{$data->email}} @if(!empty($data->getRoleNames())) @foreach($data->getRoleNames() as $v) @endforeach @endif @can('staff-edit') @endcan @can('staff-delete')
@method('DELETE') @csrf
@endcan

Nothing Found


{!! $list->links() !!}
@endsection