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