@extends('layouts.app') @section('title', 'Quản lý Phòng thi - Admin NEU') @section('content')
@include('partials.nav', ['class' => 'mb-8'])

Quản lý Phòng thi

@include('admin.partials.tabs')
@if(session('success')) {{ session('success') }} @endif

Danh sách Phòng thi / Ca thi

@foreach($rooms as $room) @endforeach @if($rooms->isEmpty()) @endif
Tên Môn Ngày - Giờ thi Ca - Phòng Link Zalo Thao tác
{{ $room->ten_mon }}
{{ $room->ma_lhp }}
{{ $room->ngay_thi }}
{{ $room->gio_thi }}
Ca: {{ $room->ca_thi }}
P: {{ $room->phong_thi }}
@if($room->link_zalo) Đã có link @else Trống @endif
Không tìm thấy phòng thi nào.
{{ $rooms->links() }}
@include('partials.footer', ['class' => 'mt-12']) @endsection