لوحة التحكم

الملفات المرفوعة

@if (session('status'))
{{ session('status') }}
@endif {{-- Usage totals --}}
إجمالي التوكنز
{{ number_format($totals['tokens']) }}
إجمالي التكلفة
{{ $totals['cost'] > 0 ? '$' . number_format($totals['cost'], 4) : '—' }}
@if ($documents->isEmpty())

لا توجد ملفات مرفوعة بعد.

@else
@foreach ($documents as $document) @endforeach
# اسم الملف النوع الحجم الحالة النماذج التوكنز التكلفة الرفع
{{ $document->id }} {{ $document->original_file_name }} {{ $document->file_type }} {{ number_format($document->file_size / 1024, 1) }} KB {{ $document->models_count ? $document->models_count : '—' }} {{ $document->run_tokens ? number_format($document->run_tokens) : '—' }} {{ $document->run_cost ? '$' . number_format($document->run_cost, 5) : '—' }} {{ $document->created_at->diffForHumans() }} عرض
@if ($documents->hasPages())
{{ $documents->links() }}
@endif @endif