@extends('layouts.student-dashboard-app') @section('title') Student Dashboard @endsection @section('content')
Dashboard
@if (session('error')) @endif
Student Information

{{-- column1 --}}
  • Student Name: {{ $student->first_name }} {{ $student->last_name }}
  • Student Number: {{ $student->student_no }}
  • NRC: {{ $student->nrc_passport }}
  • Phone: {{ $student->phone }}
  • Email: {{ $student->email }}
{{-- column1 --}}
  • Program of Study: {{ $student->program_name }}
  • Intake Year: {{ ucwords($student->entry_year) }}
  • Current Year: {{ ucwords($student_progress->academic_year_name) }}
  • Current Session: {{ ucwords($student_progress->academic_session_name) }}
  • Status: {{ ucwords($student_progress->status) }}
@endsection