@extends('user.layouts.app') @section('title', '車両詳細') @section('header')

車両詳細

@endsection @section('content')
@include('user.layouts.flash-message') @if($vehicle->is_larger != config('const.vehicle_size_status_code.no')) @foreach(config('const.vehicle_register_files') as $key => $type) @if($vehicle->getFiles($key)->count() > 0) @if($key == 'accident' || $key == 'estimate') @continue @endif @endif @if($key == 'inspection') @endif @endforeach @endif
最大積載量は1.5トン以上ですか?  {{ config('const.vehicle_size_status.' . $vehicle->is_larger) }}
{{ $type }} @if($key == 'etc')

{!! nl2br($vehicle->vehicle_note) !!}

@endif @foreach($vehicle->getFiles($key) as $image) @if(!empty($image->file_path) && Storage::disk('vehicles')->has($vehicle->id.'/'.$image->file_path)) id }}/{{ $image->file_path }}" data-lity="data-lity"> id }}/{{ $image->file_path }}"> @endif @endforeach @if(!empty($vehicle->shift_lever_type) && $key == 'shift_lever')

{{ config('const.vehicle_shift_lever_type.'.$vehicle->shift_lever_type) }}

@endif
走行距離 {{ $vehicle->travel_distance ? number_format($vehicle->travel_distance) . 'km' : '' }}
備考 {!! nl2br($vehicle->vehicle_note) !!}
公道走行
{{ config('const.vehicle_public_driving_status.'.$vehicle->public_driving) }}

@if(!empty($vehicle->accident_history) && $vehicle->public_driving != config('const.estimate_other_company_status_code.nothing'))
{!! nl2br($vehicle->public_driving_note) !!}
@endif
事故歴
{{ config('const.vehicle_accident_status.'.$vehicle->accident_history) }}
@if(!empty($vehicle->accident_history) && $vehicle->accident_history != config('const.estimate_other_company_status_code.nothing'))
{!! nl2br($vehicle->accident_history_note) !!}
@foreach($vehicle->getFiles('accident') as $image) @if($image->file_path && Storage::disk('vehicles')->has($vehicle->id.'/'.$image->file_path)) id }}/{{ $image->file_path }}" data-lity="data-lity"> id }}/{{ $image->file_path }}"> @endif @endforeach @endif
メーター改ざん・メーター交換
{{ config('const.vehicle_meter_status.'.$vehicle->meter_tampering) }}
@if(!empty($vehicle->meter_tampering) && $vehicle->meter_tampering != config('const.estimate_other_company_status_code.nothing'))
{!! nl2br($vehicle->meter_tampering_note) !!}
@endif
車両の不具合箇所
{{ config('const.vehicle_defect_status.'.$vehicle->vehicle_defect) }}
@if(!empty($vehicle->vehicle_defect) && $vehicle->vehicle_defect != config('const.estimate_other_company_status_code.nothing'))
{!! nl2br($vehicle->vehicle_defect_note) !!}
@endif
他社見積り
{{ config('const.estimate_other_company_status.'.$vehicle->estimate_other_company) }}
@if(!empty($vehicle->estimate_other_company) && $vehicle->estimate_other_company != config('const.estimate_other_company_status_code.nothing')) {{ $vehicle->price_other_company ? number_format($vehicle->price_other_company).'円' : '' }} @endif
引取予定場所
{{ config('const.vehicle_schedule_status.'.$vehicle->schedule_status) }}
@if(!empty($vehicle->schedule_status) && $vehicle->schedule_status != config('const.estimate_other_company_status_code.nothing'))
{{ $vehicle->schedule_address }}
@endif
所有者名 {{ $vehicle->owner_name }}
@unless((is_object($vehicle->contract) && $vehicle->contract->status) || $vehicle->is_complete) $vehicle->id]) }}"' >編集する @endunless

戻る

@endsection @section('page_css') @endsection @section('page_js') @endsection