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

Instructors

Add New Instructor @empty($instructors)

No instructors available.

@else
@foreach ($instructors as $instructor) @endforeach
ID Name Email Actions
{{ $instructor->id }} {{ $instructor->fname }} {{ $instructor->lname }} {{ $instructor->email }} View Edit
@csrf @method('DELETE')
@endempty
@endsection