@if ($paymentGateway && $paymentGateway->value === 'tripay' && env('TRIPAY_MODE') === 'development')
Payment Gateway
The payment gateway is in developer mode, so don't conduct real transactions with customers. It's used solely for testing payments through the payment gateway.
@endif
{{ trans('billing.status.unpayment') }}
{{ trans('billing.status.pay-later') }}
{{ trans('billing.status.overdue') }}
{{ trans('billing.status.partial-paid') }}
Failed
{{ trans('billing.status.payment') }}
{{ trans('billing.ph.all') }}
@if($search_with_status === 'paylater' || $search_with_status === 'partially_paid' || $search_with_status === 'paid')
{{ trans('billing.ph.search-teller') }}
@foreach ($users as $user)
{{ $user->full_name }}
@endforeach
@endif
{{ __('billing.ph.all-year') }}
@foreach (array_reverse(\Carbon\CarbonPeriod::create(now()->subYears(5), '1 year', now())->toArray()) as $date)
{{ $date->format('Y') }}
@endforeach
{{ __('billing.ph.all-month') }}
@foreach (array_reverse(\Carbon\CarbonPeriod::create(now()->addMonth(), '1 month', now()->addMonths(12))->toArray()) as $date)
{{ $date->format('F') }}
@endforeach
{{ __('Reset') }}
{{ __('Advance Search') }}