@extends('layouts.app') @section('content')

Gestion des catégories matières

@if(session('success'))

Succès

{{ session('success') }}
@endif @if(session('error'))

Erreur

{{ session('error') }}
@endif @if($errors->any())

Erreur

{{ $errors->first() }}
@endif
@foreach($categoriematieres as $categoriematiere) @endforeach
Photo Titre Ordre Actions
@if($categoriematiere->photo) Photo @else Aucune photo @endif {{ $categoriematiere->titre }}
@if($categoriematiere->ordre < $categoriematieres->max('ordre'))
@csrf
@else
@endif @if($categoriematiere->ordre > $categoriematieres->min('ordre'))
@csrf
@else
@endif
@csrf @method('DELETE')
{{ $categoriematieres->links() }}
@endsection