@extends('dashboard.layouts.app') @section('content')
Loading stats...
Employee Name Joining Date Department Direct Manager
{{ $staff->first_name ?? '-' }} {{ $staff->date_of_joining ?? '-' }} {{ $staff->department->name ?? '-' }} {{ $staff->manager->first_name ?? '-' }}
@foreach($staff->staffItems as $record) @endforeach
# Item Status Actions
{{ $record->id }} {{ $record->item->name ?? '-' }}

@csrf
You can select multiple items
@endsection @push('scripts') @endpush