@extends('admin.layouts.master') @section('title', 'All Instructor - Admin') @section('maincontent') @component('components.breadcumb',['thirdactive' => 'active']) @slot('heading') {{ __('All Instructor') }} @endslot @slot('menu1') {{ __('Instructor') }} @endslot @slot('menu2') {{ __('All Instructor') }} @endslot @slot('button')
{{ __('Delete Selected') }}
@endslot @endcomponent
{{ __('All Instructor')}}
@foreach($items as $item) @endforeach
{{ __('Image') }} {{ __('Name') }} {{ __('Email') }} {{ __('Detail') }} {{ __('Status') }} {{ __('Action') }}
{{$item->fname}} {{$item->email}} {{ str_limit($item->detail, $limit= 50, $end = '...')}} @if($item->status==1) {{ __('Approved') }} @else {{ __('Pending') }} @endif @php $show = App\Instructor::where('id', $item->id)->first(); @endphp
@endsection @section('scripts') @endsection