@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Active Employees')) @push('css') @endpush @section('content') @include('admin.staff.partials.list_styles')
{{ __('Browse, filter, and manage currently active staff records.') }}
| {{ __('SID') }} | {{ __('Name') }} | {{ __('Designation') }} | {{ __('Branch') }} | {{ __('Joined') }} | {{ __('Branch join') }} | {{ __('Phone') }} | {{ __('Active') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|---|---|---|
| {{ $staff->displaySid() }} |
{{ $staff->user->name }}
|
{{ $staff->designation?->name ?? '—' }} | {{ $staff->warehouse?->name ?? '—' }} | {{ $staff->joing_date?->format('Y-m-d') ?? '—' }} | {{ $staff->branchJoinDateDisplay() ?? '—' }} | {{ $staff->mobile_no ?: ($staff->user->phone ?? '—') }} | @if($staff->user_id != auth()->user()->id) @can('User-approve') @endcan @else — @endif | |
| {{ ($hasFilters ?? false) ? __('No employees match your filters.') : __('No active employees found.') }} | ||||||||