LaravelPackages.net
Acme Inc.
Toggle sidebar
think.studio/nova-entity-select-field

Laravel Nova Entity Select Field. Package allow implement functionality similar to BelongsTo but for general fields purpose, not for relation one.

50
0
1.0.1
About think.studio/nova-entity-select-field

think.studio/nova-entity-select-field is a Laravel package for laravel nova entity select field. package allow implement functionality similar to belongsto but for general fields purpose, not for relation one.. It currently has 0 GitHub stars and 50 downloads on Packagist (latest version 1.0.1). Install it with composer require think.studio/nova-entity-select-field. Discover more Laravel packages by think.studio or browse all Laravel packages to compare alternatives.

Last updated

Laravel Nova Entity Select Field

Packagist License Packagist Version Total Downloads Build Status Code Coverage Scrutinizer Code Quality

Package allow implement functionality similar to "BelongsTo" but for general fields purpose, not for relation one (for example flexible content).

preview-form.png preview-details.png preview-index.png

| Nova | Package | |------|------| | V4 | V1 |

Installation

You can install the package via composer:

composer require think.studio/nova-entity-select-field

Usage

public function fields() {
    return [
        \NovaEntitySelectField\EntitySelect::make(Member::class),
        \NovaEntitySelectField\EntitySelect::make(Member::class, 'Main Member', 'other_main_member')
                ->nullable()
                ->limit(4),
    ];
}

Credits

  • Think Studio
Comments