@include('flash::message')
ID |
Country |
Store Name |
Vehicle Name |
Vehicle No |
Vehicle Model |
Description |
Added / Modified date |
Action |
@if(count($vehicle)>0)
@foreach ($vehicle as $key=>$vehicle1)
{{ $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 }}
|
|
@endforeach
@else
No record found! |
@endif
{{$vehicle->links()}}
@endsection