@extends('admin.administration') @section('content')

Students
Add New Student

@foreach($students as $student) @if($student->photoURL == '') @else @endif @endforeach
Firstname Lastname Email Assigned Classes Parent Email School
{{ $student->first_name }} {{ $student->last_name }} {{ $student->email }} @foreach($student->programs as $program) @if( !empty($program) ) {{ $program->name }} ({{ $program->tutors->user->first_name . ' ' . $program->tutors->user->last_name }}) {{' - ' . $program->schools->name }} Remove
@else {{ '' }} @endif @endforeach
{{ $student->parent_email }}
@stop