@extends('layouts.app') @section('title', $app_setting['name'] . ' | '.__('Featured Instructors')) @section('content')
| # | {{ __('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') }}
{{ __('Active') }}
|
|
{{ __('No Instructor Available') }} |
||||||