@extends('admin.layouts.master') @section('title', 'Report Course - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __("Do you really want to delete these records? This process cannot be undone.")}}
# | {{ __('User') }} | {{ __('Issue') }} | {{ __('Email') }} | {{ __('Details') }} | {{ __('Course') }} | {{ __('Action') }} |
---|---|---|---|---|---|---|
1 | {{$item->user['fname']}} | {{$item->title}} | {{$item->email}} | {{ str_limit($item->detail, $limit=50, $end="...")}} | {{$item->courses['title']}} |
@can('reported-course.edit')
{{ __("Edit")}}
@endcan
@can('reported-course.delete')
{{ __("Delete")}}
@endcan
|