@extends('admin.layouts.master') @section('title', 'FAQs Students') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ $error}}
@endforeach# | {{ __('Question') }} | {{ __('Answer') }} | {{ __('Status') }} | {{ __('Action') }} | @foreach($faq as $key=>$p)
---|---|---|---|---|
1 {{ __('Are You Sure') }} ?{{ __('Do you really want to delete selected item ? This process cannot be undone') }}. |
{{$p->title}} | {{ str_limit(strip_tags($p->details), $limit = 50, $end = '...')}} |
@can('faq.faq-student.edit')
{{ __('Edit') }}
@endcan
@can('faq.faq-student.delete')
{{ __("Delete") }}
@endcan
{{ __('Delete') }}{{ __('Are You Sure ?')}}{{ __('Do you really want to delete')}} {{$p->title}} ? {{ __('This process cannot be undone.')}} |