@extends('admin.layouts.default') @section('title') | Vehicle Detail @endsection @section('content')

Fleet Details

@if(!empty($fleet->video)) @endif
ID {{ $fleet['id'] }}
Name {{ $fleet['name'] }}
No of seats {{ $fleet['no_of_seats'] }}
Type {{ $fleet['type'] }}
Feature {{ $fleet['features'] }}
description {{ $fleet['description'] }}
Featured Image
Image(s) @php $filesIds =''; @endphp
    @foreach($fleet->fleet_images as $image) @php $filesIds .= $image->id.',' @endphp @endforeach
Video
Meta Title {{ $fleet->meta_title }}
Meta Description {{ $fleet->meta_description }}
Status {{ $fleet['is_active'] == 1 ? 'Active' : 'In-Active' }}
Created At {{ Helper::utcToLocalDateTime($fleet['created_at']) }}
Updated At {{ Helper::utcToLocalDateTime($fleet['updated_at']) }}
@endsection