@extends('frontend::layouts.master') @section('content') @livewire('frontend::page-title', ['title' => $breadcrumb[0]['name'] ?? '', 'breadcrumbs' => $breadcrumb])
@if (!empty($faq_list)) @foreach ($faq_list as $faq)
@lang('frontend::text.label.faq_question') {!! $faq['name'] ?? '' !!}
{{-- @lang('frontend::text.label.faq_answer') --}}

{!! $faq['detail'] ?? '' !!}

@endforeach @endif
@endsection