@extends('layouts.admin', ['title' => 'أكواد الشحن | Admin']) @section('content')
Vouchers

أكواد شحن الرصيد

كود جديد
@forelse($vouchers as $voucher) @php($usagePercent = $voucher->usage_limit ? min(100, round(($voucher->used_count / max(1, $voucher->usage_limit)) * 100)) : 0)
{{ $voucher->code }}

{{ $voucher->name_ar }}

{{ number_format($voucher->amount_minor / 100, 2) }} {{ $voucher->currency_code }}
الاستخدام {{ $voucher->used_count }} / {{ $voucher->usage_limit ?? '∞' }}
تعديل
@csrf @method('DELETE')
@empty
لا توجد أكواد شحن بعد.
@endforelse
{{ $vouchers->links() }}
@endsection