@extends('backend.layouts.app') @section('content') @if (env('MAIL_USERNAME') == null && env('MAIL_PASSWORD') == null)
Here's what's happening with your store today.
teacher
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))}} |
{!! get_setting('teach_instructions') !!}