@extends('layouts.master') @section('content') @section('page_title') Questions fréquement posées @endsection @section('current_path') FAQ @endsection @include('pages.partials.header')
@foreach ($faqs as $faq)

{{ $faq->tag }}

    @foreach ($faq->items as $item)
  • {{ $item->question }}

    {{ $item->reponse }}

  • @endforeach
@endforeach
@endsection