@extends('backend-template') @section('content')

Banners Build Banner Upload Banner

@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()) @foreach($bookings as $booking) {{--$itemCat ? $itemCat->name : "*"--}} @endforeach
Date from - Date to Category Location Item Cat Status
{{ $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 * {!! getLabelByStatus($booking->status) !!} {!! Form::open([ 'url' => route('bookingDestroy', $booking->id), 'method' => 'delete']) !!} {!! Form::close() !!}
@endif
{{-- end product-box --}}
@endforeach @else

No banners were found

@endif {!! $banners->render() !!}
@stop