@extends('layouts.student') @section('title', 'Mes Souscriptions - MentoraMind') @section('content')
@if($history->isEmpty())

{{ __('student.subscription.no_history') }}

@else
@foreach($history as $sub) @endforeach
{{ __('student.subscription.plan') }} {{ __('student.subscription.price') }} {{ __('student.subscription.period') }} {{ __('student.subscription.status') }} {{ __('student.subscription.expiry_date') }}
{{ $sub->subscriptionPlan->name }}
{{ $sub->subscriptionPlan->description }}
{{ number_format((float)$sub->amount_paid, 0) }} Points {{ $sub->started_at ? $sub->started_at->format('d/m/Y') : '-' }} — {{ $sub->expires_at ? $sub->expires_at->format('d/m/Y') : '-' }} {{ __('student.subscription.status_' . $sub->status) }} {{ $sub->expires_at ? $sub->expires_at->format('d/m/Y') : '-' }}
@endif
@endsection