@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 }} {{ $destinations->category->name }}
@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