@extends('front.layout.app') @section('main_content')

{{ $page_data->faq_title }}

@if($page_data->faq_detail != '')
{!! $page_data->faq_detail !!}
@endif
@php $i=0; @endphp @foreach($faq_data as $item) @php $i++; @endphp

{!! $item->faq_detail !!}
@endforeach
@endsection