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

車両詳細

@endsection @section('content')
@foreach(config('const.vehicle_image_type') as $key => $type) @if($vehicle->getImage($key)->count() > 0) @endif @endforeach
最大積載量は1.5トン以上ですか?  {{ config('const.vehicle_size_status.'.$vehicle->is_large) }}
車検証
走行距離 {{ is_numeric($vehicle->travel_distance) ? number_format($vehicle->travel_distance).'km' : '' }}
{{ $type }} @foreach($vehicle->getImage($key) as $image) @if(Storage::disk('vehicle_image')->has($vehicle->id.''.$image->file_path)) @endif @endforeach
備考 @php echo nl2br($vehicle->vehicle_note) @endphp
公道走行 {{ config('const.vehicle_public_driving_status.'.$vehicle->public_driving) }}
事故歴 {{ config('const.vehicle_accident_status.'.$vehicle->accident_history) }}
不都合
{{ config('const.vehicle_defect_status.'.$vehicle->vehicle_defect) }}
他社見積り {{ config('const.estimate_other_company_status.'.$vehicle->estimate_other_company) }}
売却希望価格 {{ is_numeric($vehicle->price_other_company) ? number_format($vehicle->price_other_company).'円' : '' }}

戻る

@endsection