Skip to content

digitalazgroup/nova-plain-text-field

Repository files navigation

Plain text field for Laravel Nova

This field lets you to show non-editable field in update form. I use this only when creating is disabled for resource so feel free to make a Pull Request.

Installation

Via composer:

composer require digitalazgroup/nova-plain-text-field

Usage

use Digitalazgroup\PlainText\PlainText;

public function fields(Request $request)
{
    return [
        PlainText::make('Area');
    ];
}

Index view

index view

Details view

details view

Update view

update view