@extends('admin.layouts.master') @section('title', 'Examination Notices & Portal Regulations') @section('css') @endsection @section('content')
Insert, update, and manage examination notices, login requirements, and regulation deadlines displayed on the portal login page.
{{ $activeNotice->auth_instructions ?? 'Please enter your Registration Number as your Username...' }}
| # | 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)
@endif
|