@extends('layouts.admin') @section('title', 'الوسوم | Help Numo') @section('page-title', 'إدارة الوسوم') @section('admin_content')

🏷️ قائمة الوسوم

اسحب الصفوف لترتيب ظهور الوسوم في المكتبة وفي قوائم التصفية. يُحفظ الترتيب تلقائياً.

➕ إضافة وسم
@if ($tags->isNotEmpty()) @endif
@forelse ($tags as $tag)
{{ $tag->name }} /{{ $tag->slug }}
{{ $tag->is_visible ? 'ظاهر' : 'مخفي' }}
@if ($tag->color)
{{ strtoupper($tag->color) }}
@else @endif
@empty

📭 لا توجد وسوم حالياً.

@endforelse
@endsection