@extends('admin.layout')
@section('title', 'الوسوم — نظام مقالاتي')
@push('css')
@endpush
@section('content')
@if(session('success'))
{{ session('success') }}
@endif
| # |
الاسم |
الرابط |
الإجراءات |
@forelse($tags as $tag)
| {{ $tag->id }} |
{{ $tag->name }} |
{{ $tag->slug }} |
تعديل
|
@empty
| لا توجد وسوم بعد. |
@endforelse
{{ $tags->links() }}
@endsection