@extends('admin.layouts.master') @section('title', 'Examination Notices & Portal Regulations') @section('css') @endsection @section('content')

Portal Notices & Regulations Management

Insert, update, and manage examination notices, login requirements, and regulation deadlines displayed on the portal login page.

Live Portal Sync Active
@if(session('success')) @endif

Insert / Edit Examination Record

@csrf
is_active ?? 1) == 1 ? 'checked' : '' }}>

Live Login Portal Preview

Active View
Official Academic Notice

{{ $activeNotice->semester_title ?? '2020 JANUARY Semester Examination Results' }}

{{ $activeNotice->auth_title ?? 'Authentication Requirements' }}

{{ $activeNotice->auth_instructions ?? 'Please enter your Registration Number as your Username...' }}

{{ $activeNotice->regulations_title ?? 'Important Regulations & Deadlines' }}
    @php $bullets = array_filter(array_map('trim', explode("\n", $activeNotice->regulations_content ?? ''))); @endphp @foreach($bullets as $b)
  • {{ $b }}
  • @endforeach

Notice Records Directory

@foreach($notices as $n) @endforeach
# Semester Title Auth Requirement Summary Regulations & Deadlines Status Actions
{{ $loop->index + 1 }} {{ $n->semester_title }} {{ Str::limit($n->auth_instructions, 60) }} {{ Str::limit($n->regulations_content, 70) }} @if($n->is_active == 1) Active @else Inactive @endif
@if($n->is_active == 0)
@csrf
@endif
@csrf @method('DELETE')
@endsection @section('js') @endsection