@extends('layouts.app') @section('content')

{{trans('lang.vehicle_plural')}}|{{trans('lang.vehicle_desc')}}

@include('flash::message')
@if(count($vehicle)>0) @foreach ($vehicle as $key=>$vehicle1) @endforeach @else @endif
ID Country Store Name Vehicle Name Vehicle No Vehicle Model Description Added / Modified date Action
{{ $vehicle1->id }} @if(count($country)>0) @foreach ($country as $key=>$country1) @if($vehicle1->country_code==$country1['country_code']) {{$country1['country_name']}} @endif @endforeach @endif @if(count($store)>0) @foreach ($store as $key=>$store1) @if(in_array($store1->group_id, $multiple_store_name_get)) @endif @endforeach @endif {{ $vehicle1->vehicle_name }} {{ $vehicle1->vehicle_no }} {{ $vehicle1->vehicle_model }} {{ strip_tags($vehicle1->vehicle_description) }}

{{ $vehicle1->created }}

No record found!
{{$vehicle->links()}}
@endsection