orlyapps/nova-multiline-text

A Laravel Nova field.

0.0.1 2018-08-31 12:17 UTC

This package is auto-updated.

Last update: 2024-03-24 16:29:07 UTC


README

Latest Version on Packagist Total Downloads

Sample Sample

Installation

You can install the package in to a Laravel app that uses Nova via composer:

composer require orlyapps/nova-multiline-text

Usage

Use this field in your Nova Resource

// ...
use Orlyapps\NovaMultilineText\MultilineText;
// ...

public function fields(Request $request)
{
    return [
        ID::make()->sortable(),
        MultilineText::make('Company', function () {
            return [$this->company->name, $this->department->name, $this->location->name];
        }),
        MultilineText::make('Company', function () {
            return ['First Line highlighted', 'Second Line', 'Lorem Ipsum'];
        }),
         MultilineText::make('Company', function () {
            return ['First Line', 'Second Line', 'Lorem Ipsum'];
        })->highlightFirst(false),

    ];
}

Security

If you discover any security related issues, please email info@orlyapps.de instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.