@extends('admin.layouts.admin_master') @section('title', 'FAQ Management') @section('content')

FAQ List

@foreach($icons as $index => $faq) @endforeach
Sl No Question Category Answer Action
{{ $index + 1 }} {{ $faq->question }} {{ getFaqCategory($faq->category_id) }} {!! $faq->answer !!}
@csrf @method('DELETE')
@endsection @section('script') @endsection