@if(count($banners))
@foreach($banners as $banner)
{{-- end navigation text-right --}}
{{ $banner->is_active ? "active" : "not_active" }}
{{ $banner->title }}
@include('blocks.banner-image', compact('banner'))
@if($bookings->count())
Date from - Date to |
Category |
Location |
Item Cat |
Status |
|
@foreach($bookings as $booking)
{{ $booking->date_start }} - {{ $booking->date_end }} |
{{ $booking->category->name }} |
{{ $booking->country ? $booking->country->name : "All Countries" }}
@if($booking->country)
> {{ $booking->region ? $booking->region->name : "All Regions" }}
@endif
|
{{--$itemCat ? $itemCat->name : "*"--}}
* |
{!! getLabelByStatus($booking->status) !!} |
{!! Form::open([ 'url' => route('bookingDestroy', $booking->id),
'method' => 'delete']) !!}
{!! Form::close() !!}
|
@endforeach
@endif
{{-- end product-box --}}
@endforeach
@else
No banners were found
@endif
{!! $banners->render() !!}
@stop