@extends('admin.layouts.app') @section('title', 'EU/UK Financial Aids Management') @section('content')

EU/UK Financial Aids Management

@if(session('success')) @endif

{{ $sectionStats['total_sections'] }}

Total Sections

{{ $sectionStats['active_sections'] }}

Active Sections

{{ $sectionStats['inactive_sections'] }}

Inactive Sections

Last Updated

{{ $sectionStats['last_updated'] ? $sectionStats['last_updated']->format('M d, Y') : 'Never' }}

EU/UK Financial Aids Content Sections
Manage all content sections specific to the EU/UK Financial Aids page
@if($euUkSections->count() > 0)
@foreach($euUkSections as $section) @endforeach
Section Title Content Preview Status Last Updated Actions
{{ $section->section_key }} {{ $section->title }}
{{ Str::limit(strip_tags($section->content), 50) }}
@if($section->is_active) Active @else Inactive @endif {{ $section->updated_at->format('M d, Y H:i') }}
@else

No EU/UK Sections Found

It looks like the EU/UK content sections haven't been seeded yet.

Create EU/UK Section
@endif
@endsection