@extends('layouts.cork') @section('title', $title) @section('page-css') @endsection @section('breadcrumb')
@endsection @section('content') {{ $teacher->first_name . ' ' . $teacher->last_name }}| School | Last Name | First Name | Grade | Dual Credit | |
|---|---|---|---|---|---|
| @if (isset($e->student->school->name)) {{ $e->student->school->name }} @endif | @if (isset($e->student->last_name)) {{ $e->student->last_name }} @endif | @if (isset($e->student->first_name)) {{ $e->student->first_name }} @endif | @if (isset($e->student->email)) {{ $e->student->email }} @endif | @if (isset($e->student->grade)) {{ $e->student->grade }} @endif | @if (isset($e->dual_credit)) @if ($e->dual_credit == 1) Yes @else No @endif @endif |
@endsection @section('page-js') @endsection