@extends('layouts.admin') @section('content')
المقالات
@can('articles-create') إضافة جديد @endcan
@foreach($articles as $article) @endforeach
# المستخدم الصورة الرئيسية العنوان مميز زيارات تحكم
{{$loop->iteration}} {{$article->user->name}} {{$article->title_ar}} @if($article->is_featured==1) @endif {{$article->views}} @can('articles-read') عرض @endcan @can('articles-update') تحكم @endcan @can('articles-delete')
@csrf @method("DELETE")
@endcan
{{$articles->appends(request()->query())->render()}}
@endsection