@extends('layouts.admin') @section('title', 'Destinations') @section('page-title', 'Manage Destinations') @section('content')
Add New Destination
@forelse($destinations as $destination) @empty @endforelse
Country Status Featured Actions
{{ $destination->country_name_en }}
{{ Str::limit($destination->description_en, 60) }}
@if($destination->is_active) Active @else Inactive @endif @if($destination->is_featured) @else @endif Edit
@csrf @method('DELETE')

No destinations found

@if($destinations->hasPages())
{{ $destinations->links() }}
@endif
@endsection