@extends('layouts.app') @section('title', $app_setting['name'] . ' | '.__('Instructor List')) @section('content')
@forelse ($instructors as $instructor) @empty @endforelse
# {{ __('Image') }} {{ __('Name') }} {{ __('Email') }} {{ __('Title') }} {{ __('Is Featured') }} {{ __('Status') }} {{ __('Action') }}
# {{ $loop->iteration }}
image

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

{{ $instructor->user->email }} {{ $instructor->title }} @if ($instructor->is_featured) {{ __('Yes') }} @else {{ __('No') }} @endif @if ($instructor->trashed())
{{ __('Deleted') }}
@else
{{ __('Active') }}
@endif
@if ($instructor->trashed()) @else icon @if ($instructor->user_id != auth()->user()->id) icon @endif @endif
{{ __('No Instructor Available') }}
{{ $instructors->links() }}
@endsection