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