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

Gestion des catégories de blog

@if(session('success'))

Succès

{{ session('success') }}
@endif
@foreach($categorieblogs as $categorie) @endforeach
Photo Titre Description Ordre Actions
@if($categorie->photo) Photo @else Aucune photo @endif {{ Str::limit($categorie->description, 50) }}
@if($categorie->ordre < $categorieblogs->max('ordre'))
@csrf
@else
@endif @if($categorie->ordre > $categorieblogs->min('ordre'))
@csrf
@else
@endif
@csrf @method('DELETE')
{{ $categorieblogs->links() }}
@endsection