@extends('layouts.app') @section('title', 'لوحتي') @section('sidebar') @include('customer._sidebar') @endsection @section('content')

مرحبًا، {{ auth()->user()->name }}

رصيد التذاكر المتبقي

{{ is_null($balance) ? 'غير محدود ∞' : $balance }}

@if($activePurchase && $activePurchase->expires_at)

ينتهي في {{ $activePurchase->expires_at->format('Y-m-d') }}

@endif @if(is_null($balance) === false && $balance === 0) اشترِ باقة جديدة → @endif
+ فتح تذكرة دعم فني جديدة
أحدث تذاكري
@forelse($tickets as $ticket) @empty @endforelse
{{ $ticket->ticket_number }} {{ $ticket->subject }} {{ $ticket->status }}
لا توجد تذاكر بعد.
@endsection