@extends('layout.app') @section('page-title', 'FAQs') @section('breadcrumb')
Home About FAQs
@endsection @section('content')
@foreach($faqCategories as $faqCategory)
{{ $faqCategory->category_name }}
@foreach($faqCategory->questions() as $faqQuestion)
{{ $faqQuestion->question }}
@php $answer = $faqQuestion->answer; $replace = [ 'wsj_link' => $vv_wsj_link, 'wt_phone' => $vv_wt_phoneword ]; foreach ($replace as $key => $value) { $answer = str_replace(':' . $key, $value, $answer); } @endphp {!! $answer !!}
@endforeach
@endforeach
@endsection @push('after-foot-js') @endpush