@php $categorias = DB::table('preguntas_respuestas') ->select('categoria') ->groupBy('categoria') ->orderBy('id') ->get(); @endphp @foreach($categorias as $categoria)

{{$categoria->categoria}}

@php $preguntas = DB::table('preguntas_respuestas') ->where('categoria','=',$categoria->categoria) ->get(); @endphp @foreach($preguntas as $pregunta)

{{$pregunta->pregunta}}

{!!$pregunta->respuesta!!}

@endforeach
@endforeach
@include('layout.bloque-contacto')