@extends('layouts.app') @section('title', 'Instructors') @section('page-title', 'Instructors') @section('breadcrumb', 'Manage instructors') @section('content')
Add Instructor
@if($instructors->count())
@foreach($instructors as $instructor) @endforeach
Name Email Courses Status Actions
{{ $instructor->name }} {{ $instructor->email }} {{ $instructor->courses_count }} {{ $instructor->is_active ? 'Active' : 'Inactive' }} Edit
@csrf @method('DELETE')
{{ $instructors->links() }}
@else @endif
@endsection