@extends('layouts.master') @section('title', 'المدونة') @section('css') @endsection @section('page-header') @endsection @section('content')
@if(session('success'))
{{ session('success') }}
@endif
@foreach($blogs as $key => $blog) @endforeach
# العنوان الملخص الصورة تاريخ النشر الحالة التحكم
{{ $key + 1 }} {{ $blog->title_ar }} / {{ $blog->title_en }} {{ \Illuminate\Support\Str::limit($blog->excerpt_ar ?? $blog->excerpt_en, 50) }} @if($blog->image) @endif {{ $blog->created_at->format('Y-m-d') }} {{ $blog->is_active ? 'مفعل' : 'معطل' }}
@csrf @method('DELETE')
@endsection @section('js') @endsection