@extends('dashboard.layouts.master')
@section('title', 'Faqs')
@section('content')
| ID |
Question |
Answer |
Icon |
Action |
@if (count($faqs) > 0)
@foreach ($faqs as $key => $faq)
| {{ $key + 1 }} |
{{ $faq->question }} |
{!! $faq->answer !!} |
@if (isset($faq->icon) && !empty($faq->icon) && $faq->icon)
@else
No Icon
@endif
|
Edit
|
@endforeach
@else
| No Faqs Data found |
@endif
@endsection