@extends('layouts.user') @section ('content')
{{ __("Availability Cars") }}
{{__('Search')}}
@if($rows->total() > 0)
{{ __("Showing :from - :to of :total cars",["from"=>$rows->firstItem(),"to"=>$rows->lastItem(),"total"=>$rows->total()]) }}
@endif
@if(count($rows))
{{__('Availability')}}
@foreach($rows as $k=>$item)
#{{$item->id}} - {{$item->title}}
@endforeach
@else
{{__("No cars found")}}
@endif
{{$rows->appends($request->query())->links()}}
{{__('Date Information')}}
×
{{__('Date Ranges')}}
{{__('Status')}}
{{__('Available for booking?')}}
{{__('Price')}}
{{__('Number')}}
{{__('Instant Booking?')}}
{{__("Enable instant booking")}}
@{{ lastResponse.message }}
@endsection @section('head')
@endsection @section('footer') @endsection