@extends('layouts.admin') @section('title', 'القائمة الذهبية') @section('content')
@include('components.admin-sidebar')
معلومات الفيديو في القائمة الذهبية
@if($goldenVideo->video)
مشغل الفيديو
@endif
معلومات القائمة الذهبية
الترتيب:

{{ $goldenVideo->sort }}

الحالة:

@if($goldenVideo->status == 'active') نشط @else غير نشط @endif

التصنيف:

@if($goldenVideo->category) {{ $goldenVideo->category->name_ar }} @endif

الدولة:

{{ \App\Models\GoldenList::getCountries()[$goldenVideo->country] ?? $goldenVideo->country }}

أضيف بواسطة:

@if($goldenVideo->agent) {{ $goldenVideo->agent->name }} @else غير معروف @endif

تاريخ الإضافة:

{{ $goldenVideo->createdAt ? $goldenVideo->createdAt->format('Y-m-d H:i') : '-' }}

@if($goldenVideo->notes)
الملاحظات:
{{ $goldenVideo->notes }}
@endif
@if($goldenVideo->video)
معلومات الفيديو

{{ $goldenVideo->video->title }}

@if($goldenVideo->video->description)
الوصف:

{{ $goldenVideo->video->description }}

@endif
المشاهدات: {{ number_format($goldenVideo->video->video_views) }}
النوع: {{ $goldenVideo->video->video_type }}
الحالة: {{ $goldenVideo->video->status }}
تاريخ الإنشاء: {{ $goldenVideo->video->createdAt ? $goldenVideo->video->createdAt->format('Y-m-d') : '-' }}
@endif
@if($goldenVideo->video && $goldenVideo->video->user)
المستخدم
@if($goldenVideo->video->user->photo) {{ $goldenVideo->video->user->name }} @else
{{ substr($goldenVideo->video->user->name, 0, 1) }}
@endif
{{ $goldenVideo->video->user->name }}

{{ $goldenVideo->video->user->email }}

@if($goldenVideo->video->user->verified_account == 'yes') موثق @endif
@endif
إجراءات سريعة
تعديل
@csrf @method('DELETE')
@push('scripts') @endpush @endsection