@extends('layouts.app') @section('title', $app_setting['name'] . ' | '.__('Instructor List')) @section('content')
| # | {{ __('Image') }} | {{ __('Name') }} | {{ __('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') }} |
|||||||