@extends('backend.layouts.app') @section('content')
user-img

{{$student->name.' '.$student->last_name}}

Student

{{$student->address}}

Student Details
@if($student->phone != null) @endif @if($student->email != null) @endif @if($student->address != null) @endif @if($student->joining_date != null) @endif
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))}}
Subjects
@if($subjects->isNotEmpty()) @foreach ($subjects as $subject) {{$subject->name}} @endforeach @endif
Instructions

{{get_setting('st_insruction_heading')}}

{!! get_setting('st_instructions') !!}

@endsection @section('script') @endsection