@extends('layouts.master') @section('page')
Faqs | {{setting('site.title')}}
@endsection @section('content')
Below is a list of Frequently Asked Questions about computers & smartphones.
@foreach ($categories as $category) @if($category->faqs->count() > 0)
{{$category->title}}
@foreach ($category->faqs as $item)
{{$item->question}}
{!! $item->answer !!}
@endforeach
@endif @endforeach
@endsection() @push('styles') @endpush() @push('scripts') @endpush()