# | {{ __('paket.table.name') }} | {{ __('paket.table.price') }} | {{ __('paket.table.server') }} | {{ __('paket.table.status') }} | {{ __('paket.table.description') }} | {{ __('paket.table.action') }} |
---|---|---|---|---|---|---|
{{ ++$i }} | {{ $paket->name }} | @if ($paket->price === 0) {{ __('Free') }} @else @moneyIDR($paket->price) @endif | {{ $paket->mikrotik->name ?? 'no data' }} | @if ($paket->disabled === \App\Enums\MikrotikStatus::PPPOE_ENABLE->value) {{ __('paket.info.enabled') }} @endif @if ($paket->disabled === \App\Enums\MikrotikStatus::PPPOE_DISABLE->value) {{ __('paket.info.disabled') }} @endif | {{ $paket->description ?? 'No Description' }} |
|