@extends('admin.layout')
@section('title', 'Gestion des tags')
@section('content')
| Nom |
Actions |
@forelse($tags as $tag)
| {{ $tag->name }} |
|
@empty
| Aucun tag trouvé |
@endforelse
@if($tags->hasPages())
Lignes {{ $tags->firstItem() }} à {{ $tags->lastItem() }} sur {{ $tags->total() }}
{{ $tags->links() }}
@endif
@endsection