|
{{ trans('cruds.maintenance.fields.id') }}
|
{{ $maintenance->id }}
|
|
{{ trans('cruds.maintenance.fields.user') }}
|
{{ $maintenance->user->name ?? '' }}
|
|
{{ trans('cruds.maintenance.fields.property') }}
|
{{ $maintenance->property->name ?? '' }}
|
|
{{ trans('cruds.maintenance.fields.unit') }}
|
{{ $maintenance->unit->name ?? '' }}
|
| Type |
{{ optional($maintenance->maintenanceType)->name_en ?? '—' }} |
| Priority |
{{ $maintenance->priority ? ucfirst($maintenance->priority) : '—' }} |
| Status |
{{ $maintenance->status ?? 'Submitted' }} |
| Reported by (agent) |
{{ optional($maintenance->reporter)->name ?? '—' }} |
|
{{ trans('cruds.maintenance.fields.specify') }}
|
{{ $maintenance->specify }}
|
{{-- Display Images --}}
|
{{ __('Images') }}
|
@if($maintenance->maintenanceImages && $maintenance->maintenanceImages->isNotEmpty())
@foreach($maintenance->maintenanceImages as $image)
@endforeach
@else
{{ __('No images uploaded') }}
@endif
|