@extends('layout') @section('title', 'Gestion des catégories') @section('content')

@yield('title')


@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@php $counter = count($categories); @endphp @foreach ($categories as $categorie) @endforeach
# Nom
{{ $categorie->nom }}
@endsection