@extends('layouts.app') @section('title', __('Add-ons')) @section('content')
{{ __('Optional bundles tenants can attach to their plan.') }}
| {{ __('Code') }} | {{ __('Name') }} | {{ __('Billing') }} | {{ __('Price') }} | {{ __('Active') }} | |
|---|---|---|---|---|---|
| {{ $addon->code }} | {{ data_get($addon->name, app()->getLocale()) ?? data_get($addon->name, 'en') ?? $addon->code }} | {{ __($addon->billing) }} | @if($price !== null){{ number_format($price, 2) }} {{ $addon->currency }}@else—@endif | @if($addon->is_active) {{ __('Yes') }} @else {{ __('No') }} @endif | {{ __('Edit') }} |
| {{ __('No add-ons yet.') }} | |||||