@extends('backend.layouts.master')
@section('title', 'Dashboard')
@section('content')
Welcome, {{ $admin->name ?? 'Admin' }}
FBA UK LTD website overview
Courses
{{ $stats['courses'] }}
Campuses
{{ $stats['campuses'] }}
Blog Posts
{{ $stats['blogs'] }}
FAQs
{{ $stats['faqs'] }}
Testimonials
{{ $stats['testimonials'] }}
Team
{{ $stats['team'] }}
Contact Enquiries
{{ $stats['contact_total'] }}
@if($stats['contact_unread'])
{{ $stats['contact_unread'] }} new
@endif
Eligibility Checks
{{ $stats['eligibility_total'] }}
@if($stats['eligibility_unread'])
{{ $stats['eligibility_unread'] }} new
@endif
| Name |
Interest |
Date |
|
@forelse($recentContacts as $item)
|
{{ $item->fullName() }}
{{ $item->email }}
|
{{ $item->inquiryLabel() }} |
{{ $item->created_at?->format('d M Y') }} |
View |
@empty
| No enquiries yet. |
@endforelse
| Result |
Score |
Date |
|
@forelse($recentChecks as $item)
|
@if($item->is_eligible)
Eligible
@else
Needs Assessment
@endif
|
{{ $item->score }} / {{ $item->min_score }} |
{{ $item->created_at?->format('d M Y') }} |
View |
@empty
| No checks yet. |
@endforelse
@endsection