@extends('admin.layouts.simple.master') @section('title', 'Students') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

All Teachers

@endsection @section('breadcrumb-items') @endsection @section('content')
Teachers
Add Teacher
@if(Session::has('message')) @endif
@foreach($teachers as $key => $teacher) @endforeach
# Image User Name Contact Email Action
{{ $key}} {{ ($teacher->name != null) ? $teacher->name : '--' }} {{ ($teacher->contact != null) ? $teacher->contact : '--' }} {{ ($teacher->email != null) ? $teacher->email : '--' }} Edit
@endsection @section('script') @endsection