@extends('layouts.app') @section('title') Students List @endsection @section('content')
Students Courses List
@if (session('success')) @elseif(session('error')) @endif
@csrf
{{--
--}}
Students
@if ($students->first() == null) @else @foreach ($students as $student) @endforeach @endif
# First Name Last Name Student No Status Faculty Program Intake
No Data Available
{{ ++$loop->index }} {{ $student->first_name }} {{ $student->last_name }} {{ $student->student_no }} {{ $student->status }} {{ $student->faculty_name }} {{ $student->program_name }} {{ $student->entry_year }}
@endsection