@extends('layouts.app') @section('title', 'My Enrollments') @section('content')
Manage your active courses and view your completion history.
| Course | Session | Enrollment Date | Fee / Balance | Status | Action |
|---|---|---|---|---|---|
|
{{ $enrollment['course']['name'] ?? 'N/A' }}
ID: {{ $enrollment['enrollment_id'] }}
|
{{ $enrollment['session']['name'] ?? 'N/A' }}
Instructor: {{ $enrollment['session']['instructor'] ?? 'N/A' }}
|
{{ \Carbon\Carbon::parse($enrollment['enrollment_date'])->format('M d, Y') }} |
Fee: ₨ {{ number_format($enrollment['payment']['total_fee'] ?? 0) }}
Paid: ₨ {{ number_format($enrollment['payment']['total_paid'] ?? 0) }}
Balance: ₨ {{ number_format($enrollment['payment']['balance'] ?? 0) }}
|
{{ $enrollment['status'] }}
{{ $enrollment['payment']['payment_status'] ?? '' }}
|
View Course |