@extends('layouts.squelette') @section('css_header') @endsection @section('titre_header') {{ __("A propos") }} @endsection @section('titre_page') {{ __("A propos") }} @endsection @section('contenu')


{!! $text !!}
@foreach ($modifs as $modif) @if ( $modif["type"]=='VERSION_LOGICIEL')

{{ $modif["message"] }}

@endif @if ( $modif["type"]=='DATE_RELEASE')

release du {{ $modif["message"] }}

@endif @endForeach
@foreach ($modifs as $modif) @if ($modif["type"]=='VERSION')
{{ $modif["message"] }} @elseif ($modif["type"]=='RELEASE') version {{ $modif["message"] }}
@elseif ( ( $modif["type"]!='VERSION_LOGICIEL') && ( $modif["type"]!='DATE_RELEASE') )
@if ( $modif["type"]=="MODIF") Modification @elseif ( $modif["type"]=="AJOUT") Ajout @elseif ( $modif["type"]=="BUG") Correction @endif {!! $modif["type2"] !!}
{!! $modif["message"] !!}
@endif @endForeach
@endsection