@extends('layouts.admin') @section('page-title') {{ __('Manage FAQ') }} @endsection @section('breadcrumb') @endsection @section('multiple-action-button') @can('create-faq')
@endcan @endsection @section('content')
@foreach($faqs as $index => $faq) @endforeach
# {{ __('Title') }} {{ __('Description') }} {{ __('Action') }}
{{++$index}} {{$faq->title}} {!! $faq->description !!} @can('edit-faq') @endcan @can('delete-faq')
@csrf @method('DELETE')
@endcan
@endsection