{{ $row->name }}
{{ $row->bandwidth }}
@if(auth()->user()->can('view-user-package-price'))
{{ config('app.currency') . __(' ') . $row->user_price }}
@endif @if((getSetting('using_reseller') && auth()->user()->can('view-reseller-package-price')))
{{ config('app.currency') . __(' ') . $row->reseller_price }}
@endif @if(auth()->user()->isUser())
{{ auth()->user()->reseller_id ? $row->reseller_price : $row->user_price }}
@endif @if(auth()->user()->can('view-package-status'))
@if($row->status == 1) {{ __('Active') }} @endif @if($row->status == 0) {{ __('Inactive') }} @endif
@endif @if(getSetting('using_mikrotik'))
@if($row->type === 1) {{ __('PPP') }} @endif @if($row->type === 0) {{ __('HotSpot') }} @endif @if($row->type === 2) {{ __('NA') }} @endif
@endif @if(auth()->user()->can('edit-package'))
@csrf @method('PATCH') {{ __('Edit') }} @if(auth()->user()->can('deactivate-package')) @if($row->status === 1) @endif @if($row->status === 0) @endif @endif
@endif @push('scripts')