@extends('layouts.app') @section('content')
Destinations
Add Destination
@if ($destinations->count() > 0) @foreach ($destinations as $destinations) @endforeach
Image Title Category Pricing Actions
{{ $destinations->title }} {{ $destinations->title }} @if($destinations->categories && $destinations->categories->count()) @foreach($destinations->categories as $cat) {{ $cat->name }} @endforeach @else -- @endif {{ $destinations->pricing }}/{{ $destinations->sale_price }}
@if ($destinations->trashed())
@csrf @method('PUT')
@else @endif
@csrf @method('DELETE')
@else
No Destinations Yet

Add your first tour destination to get started

@endif
@endsection