@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Probationary staff')) @section('content')
| {{ __('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.') }} | ||||||||