@extends('admin.layout') @section('title', 'Projects Portfolio') @section('body')
@if(session('success'))
{{ session('success') }}
@endif
@forelse ($projects as $project) {{-- رقم الترتيب --}} {{-- العنوان والصورة --}} {{-- الاختصار --}} {{-- حالة المشروع --}} {{-- إجراءات التحكم --}} @empty @endforelse
Order Project Preview & Title Abbreviation Status Actions
#{{ $project->sort_order ?? 0 }}
@if($project->image) @else N/A @endif
{{ $project->title_en }}
{{ $project->title_ar }}
{{ $project->abbr ?: '—' }} @if($project->is_active) Visible @else Hidden @endif
@csrf @method('DELETE')
No portfolio projects discovered within database cluster pipelines.
@endsection