@extends('admin.layouts.master-soyuz') @section('title',__('All FAQ')) @section('body') @component('admin.component.breadcumb',['secondaryactive' => 'active']) @slot('heading') {{ __('All Faq') }} @endslot @slot('menu1') {{ __('Faq') }} @endslot @slot('button')
@can('faq.create') {{__("Add Faq")}} @endcan
@endslot @endcomponent
{{__("Add Faq")}}
@foreach($faqs as $key => $faq) @endforeach
{{ __("ID") }} {{ __('Question') }} {{ __('Answer') }} {{ __('Status') }} {{ __('Action') }}
{{$key+1}} {{$faq->que}} {{substr(strip_tags($faq->ans), 0, 250)}}{{strlen(strip_tags( $faq->ans))>250 ? '...' : ""}}
{{csrf_field()}}
@endsection