@extends('admin.layouts.app') @section('panel')
@forelse($staffs as $staff) @empty @endforelse
@lang('S.N.') @lang('Name') @lang('Designation') @lang('Email') @lang('Mobile') @lang('Status') @lang('Action')
{{ $loop->index + $staffs->firstItem() }} {{ $staff->name }} @if ($staff->designation) @lang('Manager') @else @lang('Staff') @endif {{ $staff->email }} {{ $staff->mobile }} @php echo $staff->statusBadge;@endphp @can('admin.branch.staff.details') @lang('Edit') @endcan @can('admin.branch.staff.status') @if ($staff->status) @else @endif @endcan
{{ __($emptyMessage) }}
@if ($staffs->hasPages()) @endif
@endsection @push('breadcrumb-plugins') @can('admin.branch.staff.add') @lang('Add New') @endcan @endpush