--- /dev/null
+<?php
+
+namespace Cubist\Backpack\Magic\Fields;
+
+use Cubist\Backpack\CubistBackpackServiceProvider;
+
+class LinkButton extends UnstoredField
+{
+ protected $_adminType = 'link_button';
+ protected $_viewNamespace = CubistBackpackServiceProvider::NAMESPACE . '::fields';
+}
--- /dev/null
+<!-- text input -->
+@include('crud::fields.inc.wrapper_start')
+<label></label>
+@include('crud::fields.inc.translatable_icon')
+<div><a class="btn btn-success"
+ href="{{ str_replace('$id',$entry->id,old(square_brackets_to_dots($field['name'])) ?? $field['value'] ?? $field['default'] ?? '') }}">{!! $field['label'] !!}</a>
+</div>
+{{-- HINT --}}
+@if (isset($field['hint']))
+ <p class="help-block">{!! $field['hint'] !!}</p>
+ @endif
+ </div>