@extends('adminlte::page') @section('title', '貸用品代替機器管理 編集') @section('content_header')
@stop @section('content')
@csrf
{{ $rentalItems->first()->equipmentType->sales_name }}
@foreach ($rentalItems as $rentalItem) @endforeach
代替機器 国内歯科 獣医科 その他医科 海外 ポータブル
@php if (old('rental_equip_type_id')) { $rental_id = old('rental_equip_type_id'); } else { $rental_id = $rentalItem->rental_equip_type_id; } @endphp is_domestic_dentist == 1 ? 'checked' : '' }}> is_veterinarian == 1 ? 'checked' : '' }}> is_other_medical == 1 ? 'checked' : '' }}> is_abroad_dentist == 1 ? 'checked' : '' }}> is_portable == 1 ? 'checked' : '' }}>
キャンセル @if(Gate::forUser(\Auth::user())->allows('employeeOperation', 'rental-items|2')) @endif
@stop @section('css') @stop