@extends('layouts.landlord') @section('title', 'الإضافات') @section('content')

الإضافات (Plugins)

@if ($errors->any())
{{ $errors->first() }}
@endif
@csrf
@foreach ($plugins as $plugin) @endforeach
الاسم الإصدار حالة المراجعة مفعّلة عند الوصف إجراءات
{{ $plugin->name }} {{ $plugin->version }} $plugin->review_status === 'pending_review', 'bg-green-100 text-green-700' => $plugin->review_status === 'approved', 'bg-red-100 text-red-700' => $plugin->review_status === 'rejected', ])> {{ ['pending_review' => 'بانتظار المراجعة', 'approved' => 'معتمدة', 'rejected' => 'مرفوضة'][$plugin->review_status] }} @if ($plugin->activations_count > 0) {{ $plugin->activations_count }} موقع @else لا شيء @endif {{ $plugin->description }} @if ($plugin->review_status === 'pending_review')
@csrf
@endif تعديل @if ($plugin->activations_count > 0)
@csrf
@endif
@csrf @method('DELETE')
@if ($plugin->review_status === 'pending_review') @endif
@endsection