@extends('admin.layouts.default') @section('title') | Fleet details @endsection @section('content')

Fleet Details

{{ Helper::gridPaginationCountString($fleets) }}
@include('admin.pages.fleet._search') @foreach($fleets as $fleet) @endforeach
ID Name Description Seats Type Status Action
{{ $fleet['id'] }} {{ $fleet['name'] }} {{ $fleet['description'] }} {{ $fleet['no_of_seats'] }} {{ $fleet['type'] }} {{ $fleet['is_active'] == 1 ? "Active" : "In-Active" }} Edit View
{{ Helper::gridPaginationCountString($fleets) }}
@endsection