@extends("frontend.{$_fb_department}.layouts.app") @section('title', '車輛検索') @section('content')

車輛検索

@if(isset($search_params['vehicle_maker_id']))
検索条件
@if(isset($search_params['vehicle_maker_id']) && !empty($search_params['vehicle_maker_id']))
メーカー: @foreach($search_params['vehicle_maker_id'] as $maker_id) @if($maker_id == 'etc') その他 @continue @endif {{ \App\Service\Masters\VehicleMakerService::getVehicleMakerName($maker_id) . ' ' }} @endforeach
@endif @if(isset($search_params['plan_shed_id']) && !empty($search_params['plan_shed_id']))
拠点:{{ \App\Service\Masters\VehicleShedService::getShedNameByID($search_params['plan_shed_id']) }}
@endif @if(isset($search_params['vehicle_size']) && !empty($search_params['vehicle_size']))
サイズ:{{ config('const.vehicle_size.' . $search_params['vehicle_size']) }}
@endif @if(isset($search_params['keyword']) && !empty($search_params['keyword']))
キーワード:{{ $search_params['keyword'] }}
@endif
@endif @if( !(isset($search_params['manage_no']) && $search_params['manage_no']))

アウトレットトラック

@endif @include('frontend.share.truck_search._index') @include("frontend.{$_fb_department}.layouts.partials.search_truck_list")
@endsection @section('page_css') @endsection @section('page_js') @endsection