@extends('layouts.app') @section('content')
Cấu hình cho Exam: {{ $exam->name }}
Thông tin Exam

Tên: {{ $exam->name }}

Slug: {{ $exam->slug }}

EMS ID: @if($exam->ems_id) {{ $exam->ems_id }} @else - @endif

Thống kê

Tổng cấu hình: {{ $examConfigs->total() }}

Bắt buộc: {{ $examConfigs->where('is_required', true)->count() }}

Tùy chọn: {{ $examConfigs->where('is_required', false)->count() }}

Mục đích

Cấu hình các trường thông tin mà user cần nhập khi đăng ký exam này. Ví dụ: Họ tên, Email, Số điện thoại, Ngày sinh, v.v.

@if (session('success')) @endif @if (session('error')) @endif @if($examConfigs->count() > 0)
@foreach($examConfigs as $config) @endforeach
# Key Value Bắt buộc Thao tác
{{ $examConfigs->firstItem() + $loop->index }} {{ $config->key }} @if($config->value) {{ $config->value }} @else - @endif @if($config->is_required) Bắt buộc @else Tùy chọn @endif
{{ $examConfigs->links() }}
@else

Chưa có cấu hình nào

Hãy thêm cấu hình để thu thập thông tin từ user khi đăng ký exam này.

Thêm cấu hình đầu tiên
@endif
@endsection