@extends('backend.layouts.app') @section('content') @if (env('MAIL_USERNAME') == null && env('MAIL_PASSWORD') == null)
{{ translate('Please Configure SMTP Setting to work all email sending functionality') }}, {{ translate('Configure Now') }}
@endif {{--

Good Morning, {{ auth()->user()->name }}

Here's what's happening with your store today.

--}}
user-img

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

teacher

{{$teacher->address}}

teacher Details
@if($teacher->phone != null) @endif @if($teacher->email != null) @endif @if($teacher->address != null) @endif @if($teacher->joining_date != null) @endif
Full Name : {{$teacher->name.' '.$teacher->last_name}}
Dob : {{is_null($teacher->dob) ? 'Not Available' : date('d-m-Y', strtotime($teacher->dob))}}
Unique ID : {{is_null($teacher->unique_id) ? 'Not Available' : $teacher->unique_id}}
School Name : {{is_null($teacher->school) ? 'Not Available' : $teacher->school->name}}
Grade : {{is_null($teacher->grade) ? 'Not Available' : $teacher->grade->name}}
Section : {{is_null($teacher->section) ? 'Not Available' : $teacher->section->name}}
Mobile : {{is_null($teacher->phone) ? 'Not Available' : $teacher->phone}}
E-mail : {{is_null($teacher->email) ? 'Not Available' : $teacher->email}}
Location : {{is_null($teacher->address) ? 'Not Available' : $teacher->address}}
Joining Date {{is_null($teacher->joining_date) ? 'Not Available' : date('d F Y', strtotime($teacher->joining_date))}}
Subjects
@if($subjects->isNotEmpty()) @foreach ($subjects as $subject) {{$subject->name}} @endforeach @endif
Instructions

{{get_setting('teach_insruction_heading')}}

{!! get_setting('teach_instructions') !!}

@endsection @section('script') @endsection