@extends('layouts.usermaster') @section('styles') @endsection @section('content') {{$faqcategory->faqcategoryname}} {{lang('Home', 'menu')}} {{lang('FAQ’s', 'menu')}} {{$faqcategory->faqcategoryname}} @php $faq = $faqcategory->faqdetails()->where('status', '1')->get(); @endphp @if($faq->isNotempty()) @foreach ($faq as $faqs) {{$faqs->question}} @if($faqs->privatemode == 1) @if(Auth::guard('customer')->check() && Auth::guard('customer')->user()) {!!$faqs->answer!!} @else {{lang('You must be logged in and have valid account to access this content.')}} @endif @else {!!$faqs->answer!!} @endif @endforeach @else {{lang('There are no new FAQ’s')}} {{lang('This faq section will be updated shortly.')}} @endif @endsection @section('scripts') @endsection
{{lang('You must be logged in and have valid account to access this content.')}}
{{lang('This faq section will be updated shortly.')}}