@extends('layouts.admin') @section('content')
الأقسام
@can('categories-create') إضافة جديد @endcan
@foreach($categories as $category) @endforeach
# الشعار العنوان المقالات تحكم
{{$category->id}} {{$category->title}} {{$category->articles_count}} @can('categories-update') تحكم @endcan @can('categories-delete')
@csrf @method("DELETE")
@endcan
{{$categories->appends(request()->query())->render()}}
@endsection