@extends('admin.layout') @section('customCss') @endsection @section('content')

Teacher List

@if(Session::has('success'))
{{Session::get('success')}}
@endif
@foreach($teachers as $item) @endforeach
ID Name Father's Name Mother's Name Mobile Number Email Created Time Edit Delete
{{$item->id}} {{$item->name}} {{$item->father_name}} {{$item->mother_name}} {{$item->mobno}} {{$item->email}} {{$item->created_at}} Edit Delete
@endsection @section('customJs') @endsection