@extends('layouts.app') @section('content')

إدارة القاعات

{{-- كروت إحصاء --}}
{{-- بحث --}}
{{-- زر إضافة --}} {{-- جدول --}} @forelse($classRooms as $room) @include('dashboard.class_rooms.modals.show', ['room' => $room]) @include('dashboard.class_rooms.modals.edit', ['room' => $room]) @include('dashboard.class_rooms.modals.delete', ['room' => $room]) @empty @endforelse
# الاسم الوصف الإجراءات
{{ $room->id }} {{ $room->name }} {{ $room->description }} {{-- عرض --}} {{-- تعديل --}} {{-- حذف --}}
لا توجد قاعات.
{{ $classRooms->links() }}
@include('dashboard.class_rooms.modals.create') @endsection