@extends('backend.layouts.app') @section('content')
Student
| Full Name : | {{$student->name.' '.$student->last_name}} |
|---|---|
| Dob : | {{is_null($student->dob) ? 'Not Available' : date('d-m-Y', strtotime($student->dob))}} |
| Unique ID : | {{is_null($student->unique_id) ? 'Not Available' : $student->unique_id}} |
| School Name : | {{is_null($student->school) ? 'Not Available' : $student->school->name}} |
| Grade : | {{is_null($student->grade) ? 'Not Available' : $student->grade->name}} |
| Section : | {{is_null($student->section) ? 'Not Available' : $student->section->name}} |
| Mobile : | {{is_null($student->phone) ? 'Not Available' : $student->phone}} |
| E-mail : | {{is_null($student->email) ? 'Not Available' : $student->email}} |
| Location : | {{is_null($student->address) ? 'Not Available' : $student->address}} |
| Joining Date | {{is_null($student->joining_date) ? 'Not Available' : date('d F Y', strtotime($student->joining_date))}} |
{!! get_setting('st_instructions') !!}