@extends('layouts.admin') @section('title', 'Configure Popup - AATI Admin') @section('content')

Configure Written Exam Popup

AquĆ­ configuras los datos que aparecen en el popup al abrir el formulario de Written Exam.

@if(session('success'))
{{ session('success') }}
@endif
@if($configs->count() > 0)
@foreach($configs as $config) @endforeach
Popup Name Register By Exam Date Exam Time Status Actions
{{ $config->session_name }} {{ $config->register_by_date ? $config->register_by_date->format('m/d/Y') : 'N/A' }} {{ $config->exam_date ? $config->exam_date->format('F j, Y') : 'N/A' }} {{ $config->exam_time }} @if($config->is_active) Active @else Inactive @endif @if(!$config->is_active) Activate @endif Edit
@csrf @method('DELETE')
@else

No popup configurations found. Create one and mark it active.

@endif
@endsection