@extends('admin.layouts.app') @section('title', 'Student Details') @section('content')
Student ID: #{{ $student->id }}
@if($student->status === 'active') Active @elseif($student->status === 'pending') Pending @else Blocked @endifEmail Address
{{ $student->email }}
@if($student->email_verified_at) Email Verified @else Email Not Verified @endifPhone Number
{{ $student->country_code }} {{ $student->phone }}
@if($student->phone_verified_at) Phone Verified @else Phone Not Verified @endifCreated
{{ $student->created_at->format('d M Y, g:i A') }}
Last Updated
{{ $student->updated_at->format('d M Y, g:i A') }}
Created By
{{ $student->createdBy->name }}
{{ $student->name }}
{{ $student->email }}
{{ $student->country_code }} {{ $student->phone }}
@if($student->status === 'active') Active @elseif($student->status === 'pending') Pending @else Blocked @endif