@extends('layouts.admin') @section('title', 'Admin Dashboard') @section('page-title', 'Dashboard') @section('content')

Pending Applications

{{ $stats['pending_applications'] }}

Total Applications

{{ $stats['total_applications'] }}

Unread Messages

{{ $stats['unread_contacts'] }}

Published Posts

{{ $stats['published_posts'] }}

Recent Applications

@forelse($recent_applications as $application)

{{ $application->full_name }}

{{ $application->email }}

{{ $application->preferred_destination }}

{{ ucfirst($application->status) }}

{{ $application->created_at->diffForHumans() }}

@empty

No applications yet

@endforelse View All Applications →

Recent Messages

@forelse($recent_contacts as $contact)

{{ $contact->name }}

{{ $contact->subject }}

{{ Str::limit($contact->message, 60) }}

{{ ucfirst($contact->status) }}

{{ $contact->created_at->diffForHumans() }}

@empty

No messages yet

@endforelse View All Messages →

Add Service

Add Destination

Write Post

Add Testimonial

@endsection