@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Asset offboard checklist')) @section('content')
{{ $row->staff?->user?->name }} · {{ __('Separation') }} #{{ $row->id }}
| {{ __('Asset') }} | {{ __('Type') }} | {{ __('Action required') }} | {{ __('Status') }} | {{ __('Action') }} |
|---|---|---|---|---|
|
{{ $check->asset?->name ?? '—' }}
{{ $check->asset?->identity ?: $check->asset?->code }}
|
{{ \App\Support\Asset\AssetType::label($check->asset_type) }} |
@if($check->action === \App\Models\StaffAssetOffboardCheck::ACTION_REVOKE_DIGITAL)
{{ __('Revoke digital license') }}
@if($check->asset?->license_holder_email)
{{ $check->asset->license_holder_email }}
@endif
@else
{{ __('Return physical asset') }}
@endif
|
{{ ucfirst($check->status) }} | @if($check->status === 'pending') @else {{ $check->completed_at?->format('d/m/Y') }} @endif |
| {{ __('No asset offboard items for this separation.') }} | ||||