@extends('dashboard.layouts.master') @section('title', 'Faqs') @section('content')

Faqs

@if (count($faqs) > 0) @foreach ($faqs as $key => $faq) @endforeach @else @endif
ID Question Answer Icon Action
{{ $key + 1 }} {{ $faq->question }} {!! $faq->answer !!} @if (isset($faq->icon) && !empty($faq->icon) && $faq->icon) Icon @else No Icon @endif Edit
@csrf @method('DELETE')
No Faqs Data found
@endsection