@extends('admin.layouts.master') @section('title', 'All FAQ - Admin') @section('maincontent') @component('components.breadcumb',['fourthactive' => 'active']) @slot('heading') {{ __('FAQ Student') }} @endslot @slot('menu1') {{ __('FAQ Student') }} @endslot @slot('button')
@can('faq.faq-student.delete') @endcan @can('faq.faq-student.create') {{ __('Add FAQ') }} @endcan
@endslot @endcomponent
@if ($errors->any()) @endif
{{ __('FAQStudent') }}
@foreach($faq as $key=>$p) @endforeach
# {{ __('Title') }} {{ __('Detail') }} {{ __('Status') }} {{ __('Action') }}
1 {{$p->title}} {{ str_limit(strip_tags($p->details), $limit = 50, $end = '...')}}


@endsection @section('script') @endsection