@extends('layouts.app') @section('title', 'Liste des Catégories') @section('side_bar') @include('layouts.admin.side_bar_dashboard') @endsection @section('content')

@yield('title')

#

Nom

Action

@foreach ($categories as $category)

{{ $category->id }}

{{ $category->name }}

@csrf @method('DELETE')
@endforeach
@endsection