@if(getSetting('using_reseller'))
{{ $row->reseller->name ?? __('N/A') }}
@endif @if(getSetting('using_customer_manager'))
{{ $row->manager->name ?? __('N/A') }}
@endif @if(getSetting('using_service_zone'))
{{ $row->serviceZone->name ?? __('N/A') }}
@endif
{{ $row->subscription->package_name ?: __('N/A') }}
{{ date('Y-m-d', strtotime($row->subscription->subscription_expires)) ?: __('N/A') }}
@if($row->status === 1) {{ __('Active') }} @endif @if($row->status === 2) {{ __('Expired') }} @endif @if($row->status === 3) {{ __('Terminated') }} @endif
@if($row->due_amount($row->id) === 0) {{ config('app.currency') . __(' ') . $row->due_amount($row->id) }} @endif @if($row->due_amount($row->id) !== 0) {{ config('app.currency') . __(' ') . $row->due_amount($row->id) }} @endif
@if(auth()->user()->can('edit-user'))
{{ __('Edit') }} {{ __('Renew') }} @if(!($row->status == 3))
@csrf @method('PATCH')
@endif
@endif @push('scripts')