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

Teachers List

@foreach ($teachers as $key=>$teacher ) @endforeach
id Name Email
{{++$key}} {{$teacher->first_name.' '. $teacher->middle_name.' '. $teacher->last_name}} @if ($teacher->is_site)
site
@endif @if (!$teacher->is_active)
inActive
@endif
{{$teacher->email}}
@endsection