Basics
Contains all Basic methods.
The Hidden
field is a hidden field that by default sets type=hidden
.
The field will be hidden during form building, but will be displayed in the preview, as will its wrapper.
use MoonShine\UI\Fields\Hidden;Hidden::make('category_id')
use MoonShine\UI\Fields\Hidden;Hidden::make('category_id')
<x-moonshine::form.inputtype="hidden"name="hidden_id"/>
<x-moonshine::form.inputtype="hidden"name="hidden_id"/>
Show Value
The field is completely hidden in the form, but if you need to maintain the field's behavior while displaying its value, you can use the showValue()
method.
Hidden::make('category_id')->showValue()
Hidden::make('category_id')->showValue()