@include('admin.layouts.sidebar')
عدد اللاعبين
{{ $totalPlayers ?? 0 }}
عدد المدربين
{{ $totalCoaches ?? 0 }}
الاشتراكات النشطة
{{ $activeSubscriptions ?? 0 }}
إجمالي الإيرادات
{{ $totalRevenue ?? '0.00' }} جنيه
إجمالي النفقات
{{ $totalExpenses ?? '0.00' }} جنيه
الاشتراكات الأخيرة
لاعب |
رياضة |
منذ |
حتى |
التكلفة |
@forelse($recentSubscriptions as $subscription)
{{ $subscription->player->name ?? 'Unknown Player' }} |
@if ($subscription->package)
Package: {{ $subscription->package->name }}
@elseif($subscription->game)
Game: {{ $subscription->game->name }}
@elseif($subscription->subGame)
Sub-Game: {{ $subscription->subGame->name }}
@else
N/A
@endif
|
{{ $subscription->start_date ?? 'N/A' }} |
{{ $subscription->end_date ?? 'N/A' }} |
{{ $subscription->calculated_fee ?? '0.00' }} جنيه |
@empty
لا يوجد اشتراكات حديثة |
@endforelse