@extends('layouts.app') @section('title', 'Kho Voucher | GreenCard.vn') @section('content')
@include('partials.dash-sidebar')

Kho Voucher

@forelse($vouchers as $v)
{{ str_contains($v->title, '%') || str_contains($v->title, 'Giảm') ? '%' : '🚚' }} {{ $v->badge }}
{{ $v->title }}
{{ $v->subtitle }}
{{ $v->condition }}
@if($v->used) Đã sử dụng ngày {{ $v->used_at->format('d/m/Y') }} @elseif($v->expiring_soon) ⏰ Hết hạn trong 2 ngày @else Hết hạn: {{ $v->expires_at->format('d/m/Y') }} @endif
@empty
Không có voucher nào.
@endforelse
@endsection @push('scripts') @endpush