@extends('layouts.app') @section('title', 'Gestion des Tags') @section('content')

Tags

Liste de vos tags
@foreach ($tags as $tag) @endforeach
NOM NOMBRE D'UTILISATION ACTION
{{ $tag->translations->firstWhere('locale', 'fr')->name ?? 'Nom non disponible' }} {{ $tag->posts->count() }}
@csrf @method('DELETE')
@include('layouts.pagination', ['items' => $tags])
@endsection