@extends('layouts.admin') @section('title', 'المقالات') @section('content')

إدارة المقالات

@foreach($posts as $post) @endforeach
# الصورة العنوان تاريخ النشر الإجراءات
{{ $loop->iteration }} @if($post->image) Post @endif {{ $post->title }} {{ $post->published_at ? $post->published_at->format('Y-m-d') : 'مسودة' }}
@csrf @method('DELETE')
@endsection