{{ $type === 'offboarding' ? __('Offboarding') : __('Onboarding') }}

{{ __('Start Process') }}
@foreach($processes as $p) @endforeach
Employee Type Start End Status Actions
{{ $p->employee->first_name }} {{ $p->employee->last_name }} {{ ucfirst($p->type) }} {{ $p->start_date->format('Y-m-d') }} {{ $p->end_date ? $p->end_date->format('Y-m-d') : '' }} {{ ucfirst(str_replace('_', ' ', $p->status)) }} View
@csrf @method('DELETE')
{{ $processes->links() }}