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

Students Table

@foreach($students as $student) @endforeach
Id Name Student Number Parent Phone Number Classroom Enrollment Date Actions
{{$student->id}} {{$student->first_name.' '.$student->surname}} {{$student->student_num}} First: {{$student->parent_phone_number}} @if($student->second_phone_number)
Second: {{$student->second_phone_number}} @endif
{{$student->classroom->name}} {{$student->enrollment_date}}
@csrf
@method('DELETE') @csrf
{!! $students->links() !!}
@endsection