@extends('backend.layouts.app') @section('content')

{{translate('All Staffs')}}

{{translate('Staffs')}}
@foreach($staffs as $key => $staff) @if($staff->user != null) @endif @endforeach
# {{translate('Name')}} {{translate('Email')}} {{translate('Phone')}} {{translate('Role')}} {{translate('Options')}}
{{ ($key+1) + ($staffs->currentPage() - 1)*$staffs->perPage() }} {{$staff->user->name}} {{$staff->user->email}} {{$staff->user->phone}} @if ($staff->role != null) {{ $staff->role->getTranslation('name') }} @endif
{{ $staffs->appends(request()->input())->links() }}
@endsection @section('modal') @include('modals.delete_modal') @endsection