@extends('layout')
@section('title')
{{ $personne->prenom }} {{ $personne->nom }}
@endsection
@section('css')
@endsection
@section('content')
@if ($message = Session::get('success'))
@endif
@if ($message = Session::get('error'))
@endif
Categprie |
Question |
Reponse |
@foreach ($personne->reponses as $reponse)
{{ $reponse->question->categorie->nomc }} |
{{ $reponse->question->intitule }} |
{{ $reponse->reponse }} |
@if ( $loop->iteration %3==0)
|
|
@endif
@endforeach
@endsection
@section('script')
{{-- script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.5.0/chart.min.js" integrity="sha512-asxKqQghC1oBShyhiBwA+YgotaSYKxGP1rcSYTDrB0U6DxwlJjU59B67U8+5/++uFjcuVM8Hh5cokLjZlhm3Vg==" crossorigin="anonymous" referrerpolicy="no-referrer"> --}}
@endsection