@extends('layouts.app_view'); @section('content')

Classrooms Table

{{-- --}} @foreach($classrooms as $classroom) {{-- Todo: Add limit for the classes and show the fill state of each one.--}} {{----}} @endforeach
Id Name DescriptionFill StateStudents Count Actions
{{$classroom->id}} {{$classroom->name}} {{$classroom->description}}
{{$classroom->students->count()}}
@csrf
@method('DELETE') @csrf
{!! $classrooms->links() !!}
@endsection