@extends('layouts.app') @section('title', $app_setting['name'] . ' | Featured Instructors') @section('content')
@foreach ($instructors as $instructor) @endforeach
# User Email Title Is Featured Status Action
{{ $loop->iteration }}

{{ $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 @endif
@endsection