@extends('master') @section('content')
@include('admin.layout.breadcrumbs', [ 'title' => __('FAQs'), ])
@if (session('status')) @endif

{{__('All FAQs')}}

@can('faq_create') @endcan
@if(Gate::check('faq_edit') || Gate::check('faq_delete')) @endif @foreach ($faq as $item) @if(Gate::check('faq_edit') || Gate::check('faq_delete')) @endif @endforeach
{{__('Question')}} {{__('Answer')}} {{__('Status')}}{{__('Action')}}
{{$item->question}} {{$item->answer}}
{{$item->status=="1"?'Publish': 'Draft'}}
@can('faq_edit') @endcan @can('faq_delete') @endcan
@endsection