@extends('admin.layout') @section('title', 'Technologies Orbit') @section('body')
@if(session('success'))
{{ session('success') }}
@endif @php $ringCount = $rings->count(); $techCount = $rings->sum(fn($ring) => $ring->technologies->count()); @endphp {{-- كروت الإحصائيات السريعة --}}
Total Track Layers
{{ $ringCount }}
Constellation Nodes
{{ $techCount }}
{{-- طبقات الحلقات والتقنيات --}}
@forelse($rings as $ring)
{{-- هيدر الحلقة --}}

Orbit Level Ring #{{ $ring->ring_number }}

Radius: {{ $ring->radius_px }}px · Period: {{ $ring->duration_seconds }}s · Direction: {{ strtoupper($ring->direction) }}

@if($ring->is_active) Active @else Inactive @endif
{{-- إجراءات تعديل الحلقة --}}
Add Technology
@csrf @method('DELETE')
{{-- شبكة التقنيات داخل الحلقة --}}
@if($ring->technologies->count())
@foreach($ring->technologies->sortBy('sort_order') as $tech)
{{-- مربع عرض أيقونة التقنية الحالية --}}
@if($tech->icon_type === 'image' && $tech->icon_image) {{ $tech->name }} @else {{ $tech->icon ?: '•' }} @endif

{{ $tech->name }}

Sequence Priority: {{ $tech->sort_order ?? '0' }}
{{-- خيارات تعديل التقنية --}}
@csrf @method('DELETE')
@endforeach
@else
No functional cluster node modules assigned to this vector ring track layer yet.
@endif
@empty

System Orbit Array is Blank

Deploy your foundational geometric layer to activate dynamic interactive orbit simulations.

Add Initial Track Layer
@endforelse
@endsection