@extends('frontend.master', ['activePage' => 'destination']) @section('content') {{-- breadcrumbs --}} @include('frontend.layout.breadcrumbs', [ 'title' => __('Destinations'), 'page' => __('Destinations'), ]) {{-- page content --}}

{{count($destinations)}} {{__('destinations found')}}

@if(count($destinations) == 0)
{{__('No Events found')}}!
@else @foreach ($destinations as $item) @endforeach @endif
@endsection