@extends('admin.layouts.app') @section('title', 'Why Select LECL Management') @section('content')

Why Select LECL Management

Edit Section
@if (session('success')) @endif @if (session('error')) @endif
Section Overview
@if ($whyLeclSection)
{{ $whyLeclSection->title }}

{{ $whyLeclSection->content }}

{{ $whyLeclSection->is_active ? 'Active' : 'Inactive' }}

Last updated: {{ $whyLeclSection->updated_at->format('M d, Y H:i') }}

@else
Section Not Found

The Why Select LECL section has not been created yet.

Create Section
@endif
@if ($whyLeclSection && $whyLeclSection->data && isset($whyLeclSection->data['benefits']))
Benefits ({{ count($whyLeclSection->data['benefits']) }})
Manage Benefits
@foreach ($whyLeclSection->data['benefits'] as $index => $benefit)
{{ $benefit['title'] }}

{{ $benefit['description'] }}

@endforeach
@else
No Benefits Added

Start by adding some benefits to showcase why students should select LECL.

Add Benefits
@endif
@endsection