@extends('app') @section('title', 'Gestion des levele') @section('link') @endsection @section('content')
@include('includes._alert')

Gestion des niveaux

@foreach ($data as $item)
@php $i = 1; @endphp @foreach ($item['data'] as $val) @endforeach
Libelle Abréviation Actions
{{$i <= 9 ? '0'.$i++:$i++}} {{ucfirst($val->level)}} {{$val->code ?? '---'}} @if ($val->level == 'séconde') {{formatAffichage($item['2nd']) ? '['.formatAffichage($item['2nd']).']':''}} @elseif ($val->level == 'première') {{formatAffichage($item['2nd']) ? '['.formatAffichage($item['1ere']).']':''}} @elseif ($val->level == 'terminale') {{formatAffichage($item['2nd']) ? '['.formatAffichage($item['tle']).']':''}} @endif
@if ($val->id > 13) @else @endif
@endforeach
@endsection @section('script') @endsection