Heimdall-Apps/Budibase/config.blade.php
Trent AE. Maydew 48e2ab3979
Add Budibase Enhanced Plugin (#822)
* Add Budibase Enhanced Plugin

- Add Budibase API
- Icon run through tinify
- Shows Total Apps and Active Apps
- Uses var test to active

* php-cs-fix

* phplint

* Camel case fix

* Delete yarn.lock

* Delete .php-cs-fixer.cache

---------

Co-authored-by: Trent AE. Maydew <ta3m@users.noreply.github.com>
Co-authored-by: Martijn van der Kleijn <martijn.niji@gmail.com>
2025-03-30 00:18:39 +01:00

14 lines
821 B
PHP

<h2>{{ __('app.apps.config') }} ({{ __('app.optional') }}) @include('items.enable')</h2>
<div class="items">
<div class="input">
<label>{{ strtoupper(__('app.url')) }}</label>
{!! Form::text('config[override_url]', isset($item) ? $item->getconfig()->override_url : null, ['placeholder' => __('app.apps.override'), 'id' => 'override_url', 'class' => 'form-control']) !!}
</div>
<div class="input">
<label>{{ __('app.apps.apikey') }}</label>
{!! Form::text('config[apikey]', isset($item) ? $item->getconfig()->apikey : null, ['placeholder' => __('app.apps.apikey'), 'data-config' => 'apikey', 'class' => 'form-control config-item']) !!}
</div>
<div class="input">
<button style="margin-top: 32px;" class="btn test" id="test_config">Test</button>
</div>
</div>