@extends('layouts.user') @section ('content')
{{ __("Availability Gigs") }}
{{__('Search')}}
@if($rows->total() > 0)
{{ __("Showing :from - :to of :total events",["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 events found")}}
@endif
{{$rows->appends($request->query())->links()}}
{{__('Date Information')}}
×
{{__('Date Ranges')}}
{{__('Status')}}
{{__('Available for booking?')}}
{{__("Name")}}
{{__("Number")}}
{{__("Price")}}
@{{ lastResponse.message }}
@endsection @section('head')
@endsection @section('footer') @endsection