@extends('adminlte::page') @section('title', '修理依頼新規登録') @section('content_header')
@stop @section('content')
  • 機器選択
    1
  • 形式・製造番号
    2
  • 症状
    3
  • 貸用品
    4
  • 配送手続方法
    5
  • 利用規約確認
    6
  • 修理依頼登録完了
    7
  • 下記の内容をご確認の上、ご同意頂ける場合には、「修理を申し込む」ボタンより次の画面へお進みください。

    @csrf @if(!empty($data)) @foreach($data as $name => $rows) @if($name == "files") @if(!empty($rows)) @foreach($rows as $id => $file) @endforeach @endif @else @if(is_array($rows)) @foreach($rows as $index => $row) @endforeach @else @endif @endif @endforeach @endif
    機器
    {{ \Arr::get($equipment, 'name') }}
    形式
    @foreach($equipment->equipmentTypes as $equipmentType) {{ \Arr::get($equipmentType, 'external_name', '') }} @endforeach
    製造番号
    {{ \Arr::get($data, 'product_number', '') }}
    @if($failures->isNotEmpty())
    @foreach($failures as $keys => $failure)
    @if(!$keys)
    症状
    @endif @if($failure->id != 9999)
    {{ $failure->detail }}
    @endif
    @endforeach
    @endif @if(\Arr::has($data, 'failure_remarks') && !empty(\Arr::get($data, 'failure_remarks')))
    その他症状
    {{ \Arr::get($data, 'failure_remarks') }}
    @endif
    写真・動画添付
    @if($files->isNotEmpty()) @foreach($files as $file)

    {{ \Arr::get($file, 'original_file_name') }}
    @endforeach @endif
    貸用品
    @php($rental_request_flag = \Arr::get($data, 'rental_request_flag')) @if($rental_request_flag) あり @else なし @endif
    @php($dropoff_type = \Arr::get($data, 'dropoff_type')) @if($dropoff_type == "1") 貸用品のお届け日以降に修理品を発送する @elseif($dropoff_type == "2") 修理品を先にオサダに預ける @endif
    @if ( ( $equipmentType->repair_start_type == "1" && $clinic->country_id === \App\Models\Country::ID_JAPAN ) || ( $equipmentType->repair_start_type_foreign == "1" && $clinic->country_id !== \App\Models\Country::ID_JAPAN ) )
    修理日時
    別途日程を調整し、修理にお伺いいたします 
    @else
    お預かり&お届け方法
    {{ DeliveryMethodHelper::getMethodText((int) $data['delivery_method']) }} 
    お預かり日時
    土日祝除く2日後以降のご設定いただいたお時間に、
    預かりにお伺いいたします
    @endif @if ($simpleEstimate[0] > 0) @endif
    *修理品をお預かり後、お見積もりをお送りいたします。
    *異常がない場合は無償で返却いたします。
    *貸用品の貸出期間は最大3ヶ月です。期限を過ぎないようご注意ください。
    @foreach ($equipment->fileProcedureJa as $file) *取り外し、取り付け方法については、ご登録後にご確認できます。
    @endforeach
    @if ( $clinic->country_id !== \App\Models\Country::ID_JAPAN ) *運送にかかる費⽤はお客様ご負担となります
    @endif *修理をキャンセルした場合、見積キャンセル料として、点検料金 @if ($equipment->equipmentTypes->count() == 0) 5,000円 @else {{ number_format($equipment->equipmentTypes[0]->getCancelPrice()) }}円 @endif (税抜)をご負担いただきます。
    @if ($equipment["caution"])

     {{ $equipment["caution"] }}

    @endif
    @if($isTermNeedAgree)
    @include('agency.information.modal.article')
    @else
    {{$TermAgreedDatetime}} 同意済
    @endif
    @if($isTermNeedAgree) *利用規約をすべてご確認いただき、「同意する」にチェックをいただくとボタンを押下できます @endif
    @stop @section('css') @stop @section('js') @stop