@extends('layouts.admin')
@section('title', 'Student Management')
@section('content')
{{--
--}}
{{--
--}}
| Full Name: |
{{ $student->name ?? '-' }} |
{{--
| Email address: |
{{ $student->email ?? '-' }} |
--}}
| Email address: |
{{ $student->email ?? '-' }}
@if($student->is_email_verified == '1')
@else
{{$student->is_email_verified}}
@endif
|
| Date of Birth: |
{{ \Carbon\Carbon::parse($student->dob)->format('d/m/Y') ?? '-' }} |
{{--
| Student Status: |
{{ $student->status == 1 ? 'Activated' : 'Inactive' }} |
--}}
| Subscription Plan: |
{{ ($student->subscriptionPlan() != null && $student->subscriptionPlan()->stripe_subscription_id!='Free Trial') ? 'PAID' :'FREE' }}
|
| Parent’s Name: |
{{ $student->parent_name ?? '-' }} |
| Parent’s Email ID: |
{{ $student->parent_email ?? '-' }} |
| Report Frequency: |
{{ $student->report_frequency ?? 'Weekly' }} |
@endsection