Pārlūkot izejas kodu

fix voucher showing expiry "never"

1day2die 2 gadi atpakaļ
vecāks
revīzija
9a04f373f0
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      app/Http/Controllers/Admin/VoucherController.php

+ 2 - 2
app/Http/Controllers/Admin/VoucherController.php

@@ -245,10 +245,10 @@ class VoucherController extends Controller
             })
             ->editColumn('expires_at', function (Voucher $voucher) {
                 if (! $voucher->expires_at) {
-                    return '';
+                    return __("Never");
                 }
 
-                return $voucher->expires_at ? $voucher->expires_at->diffForHumans() : '';
+                return $voucher->expires_at ? $voucher->expires_at->diffForHumans() : __("Never");
             })
             ->editColumn('code', function (Voucher $voucher) {
                 return "<code>{$voucher->code}</code>";