@foreach ($rentalItems as $rentalItem)
| {{ $rentalItem->management_number }} |
{{ $rentalItem->is_domestic_dentist ? '国内歯科' : '' }}
{{ $rentalItem->is_abroad_dentist ? '海外歯科' : '' }}
{{ $rentalItem->is_veterinary ? '獣医科' : '' }}
{{ $rentalItem->is_other_medical ? 'その他医科' : '' }}
{{ $rentalItem->is_others ? 'その他' : '' }}
{{ (!$rentalItem->is_domestic_dentist && !$rentalItem->is_abroad_dentist && !$rentalItem->is_veterinary && !$rentalItem->is_other_medical && !$rentalItem->is_others) ? '設定なし' : '' }}
|
{{ $rentalItem->makeStatusText() }}
@if (in_array($rentalItem->current_status, [\Modules\SmartSupport\Entities\RentalItem::STATUS_PREPARED, \Modules\SmartSupport\Entities\RentalItem::STATUS_RENT]) && $rentalItem->latestRepairRentalItem)
(修理依頼:
{{$rentalItem->latestRepairRentalItem->repairRequest->repair_request_num}}
)
@endif
|
@if(Gate::forUser(\Auth::user())->allows('employeeOperation', 'rental-items|2'))
@if(Gate::forUser(\Auth::user())->allows('employeeOperation', 'rental-items|2'))
@endif
|
編集
|
@endif
@endforeach