›
{{ $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 !!}