@extends('admin.layouts.master') @section('title', 'Pending Instructors Request - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __("Do you really want to delete these records? This process cannot be undone.")}}
{{ __('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 |
@can('instructorrequest.edit')
{{ __("View")}}
@endcan
@can('instructorrequest.delete')
{{ __("Delete")}}
@endcan
|