digitalazgroup/nova-plain-text-field

A Laravel Nova plain text field.

Installs: 48 872

Dependents: 2

Suggesters: 0

Security: 0

Stars: 4

Watchers: 1

Forks: 6

Open Issues: 0

pkg:composer/digitalazgroup/nova-plain-text-field

0.0.4 2018-10-01 18:44 UTC

This package is auto-updated.

Last update: 2025-09-21 23:21:09 UTC


README

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