@extends('layouts.base', [ "breadcrumb" => [ // see partials/breadcrumb.blade.php for default options "title" => "AJOUTER UN GRADE", // "showNav" => true, "nav" => [ "Dashboard" => route("home"), "Ajouter un grade" => "", ], "btnText" => "GestStudent v17.04", ] ]) @section('css') @endsection @section('content') @if(session()->has('error')) @endif
@php $i = 1; @endphp @foreach ($grades as $g) @php $i++; @endphp @endforeach
ID NOM GRADE SIGLE NIVEAU ACTIONS
{{$i}} {{$g->nomGrade}} {{$g->sigleGrade}} {{$g->niveauGrade}}
@endsection @section('script') @endsection