@extends($layout_path) @section('title', $app_setting['name'] . ' | ' . __('Instructor List')) @section('header-title')

{{ __('Instructor Management') }}

@endsection @section('content')
@forelse ($instructors as $instructor) @empty @endforelse
# {{ __('Name') }} {{ __('Email') }} {{ __('Title') }} {{ __('Is Featured') }} {{ __('Action') }}
{{ generateID($loop->iteration) }}
image

{{ $instructor->user->name }}

{{ $instructor->user->email }} {{ $instructor->title }} @if (!$instructor->is_featured)
{{ __('Inactive') }}
@else
{{ __('Active') }}
@endif
{{ __('No Instructor Available') }}
{{ $instructors->links() }}
@endsection