Name
{{ $student->name }}
Email
{{ $student->email }}
Phone
{{ $student->phone }}
Date of Birth
{{ $student->date_of_birth->format('M d, Y') }}
Home Address
{{ $student->home_address }}
Status
{{ $student->is_active ? 'Active' : 'Inactive' }}
Back
@if ($student->is_active)
@else
@endif