@extends('admin.layouts.app') @section('title', 'Student Details') @section('content')

Student Details

@if($student->profile_picture) @else
@endif

{{ $student->name }}

Student ID: #{{ $student->id }}

@if($student->status === 'active') Active @elseif($student->status === 'pending') Pending @else Blocked @endif

Contact Information

Email Address

{{ $student->email }}

@if($student->email_verified_at) Email Verified @else Email Not Verified @endif
@if($student->phone)

Phone Number

{{ $student->country_code }} {{ $student->phone }}

@if($student->phone_verified_at) Phone Verified @else Phone Not Verified @endif
@endif

Account Information

Created

{{ $student->created_at->format('d M Y, g:i A') }}

Last Updated

{{ $student->updated_at->format('d M Y, g:i A') }}

@if($student->createdBy)

Created By

{{ $student->createdBy->name }}

@endif

Student Information

{{ $student->name }}

{{ $student->email }}

{{ $student->country_code }} {{ $student->phone }}

@if($student->status === 'active') Active @elseif($student->status === 'pending') Pending @else Blocked @endif

@endsection