{{ __('dashboard.id') }} {{ __('dashboard.coupons.code') }} {{ __('dashboard.coupons.type') }} {{ __('dashboard.coupons.value') }} {{ __('dashboard.coupons.usage_limit') }} {{ __('dashboard.coupons.used_count') }} {{ __('dashboard.coupons.expires_at') }} {{ __('dashboard.status') }} @forelse ($rows as $row) {{ $row->id }} {{ $row->code }} {{ $row->type }} {{ currency($row->value) }} {{ $row->usage_limit ?? '—' }} {{ $row->used_count }} {{ $row->expires_at ? $row->expires_at->format('Y-m-d H:i') : '—' }} @if ($row->is_active) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif @empty {{ __('dashboard.no_records_found') }} @endforelse