@extends('layouts.user') @section('head') @endsection @section('content')

{{!empty($recovery) ?__('Recovery Cars') : __("Manage Cars")}} @if(Auth::user()->hasPermissionTo('car_create') && empty($recovery)) {{__("Add Car")}} @endif

@include('admin.message') @if($rows->total() > 0)
{{ __("Showing :from - :to of :total Cars",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} {{$rows->appends(request()->query())->links()}}
@foreach($rows as $row)
@include('Car::frontend.manageCar.loop-list')
@endforeach
{{ __("Showing :from - :to of :total Cars",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }} {{$rows->appends(request()->query())->links()}}
@else {{__("No Car")}} @endif @endsection @section('footer') @endsection