{{ __('Back to list') }}
@forelse($staffs as $staff) @empty @endforelse
{{ __('SID') }} {{ __('Name') }} {{ __('Designation') }} {{ __('Branch') }} {{ __('Joining Date') }} {{ __('Joining Date to Branch') }} {{ __('Probation Period') }} {{ __('Probation end date') }} {{ __('Staff Phone No') }}
{{ $staff->displaySid() }} {{ $staff->user?->name ?? '—' }} {{ $staff->designation?->name ?? '—' }} {{ $staff->warehouse?->name ?? '—' }} {{ $staff->joing_date?->format('Y-m-d') ?? '—' }} {{ $staff->branchJoinDateDisplay() ?? '—' }} {{ $staff->probation_months ? $staff->probation_months.' '.__('months') : '—' }} {{ $staff->probation_end_date?->format('Y-m-d') ?? $staff->probationEndDate()?->format('Y-m-d') ?? '—' }} {{ $staff->mobile_no ?: ($staff->user?->phone ?? '—') }}
{{ __('No probationary staff found.') }}