@extends('layouts.master') @section('title', 'Catégories') @section('content')

@yield('title')

@can('creer_une_categorie') Ajouter une catégorie @endcan

@if (Session::get('success'))
@endif @if ($categories->count() > 0)
@foreach ($categories as $key => $categorie) @endforeach
# Nom de la catégorie Description Action
{{ $key + 1 }} {{ $categorie->name }} {{ $categorie->description }} @can('modifier_une_categorie') @endcan @can('supprimer_une_categorie') @endcan
@else
Vide
@endif
@endsection