scops/nova-belongs-to-dependency

Extended Laravel Nova BelongsTo field that can depend on other fields

dev-master 2021-05-27 18:22 UTC

This package is auto-updated.

Last update: 2024-04-28 00:35:50 UTC


README

This package is an extension of Laravel Nova's existing BelongsTo field and Vue components.

Originally created by manmohanjit, the original package was abandoned. Then followed by webparking/nova-belongs-to-dependency, but I corrected some issues with large recordsets and addedd support for searchable fields.

Installation

You can install this package on a Laravel app that uses Nova via composer:

composer require scops/nova-belongs-to-dependency

Usage

The following will list categories with type_id equal to the value set in the first BelongsTo field.

use Scops\BelongsToDependency\BelongsToDependency;
...
return [
    ...
    BelongsTo::make('Type'),
    
    BelongsToDependency::make('User')
        ->dependsOn('type', 'type_id'),
    ...
];

Look at the example below for other use cases.

Example

Database Structure

  • Type (id, name)
  • Posts (id, type_id, category_id, title, body)
  • Category (id, type_id, title)

We should only be able to assign categories to posts that belong to the same type.

This is how you would achieve it on the Nova category resource:

use Scops\BelongsToDependency\BelongsToDependency;
...
return [
    ...
    BelongsTo::make('Type'),
    
    BelongsToDependency::make('User')
        ->dependsOn('type', 'type_id'),
    ...
];

This would work if you used a text/enum type field too.

use Scops\BelongsToDependency\BelongsToDependency;
...
return [
    ...
    Select::make('Type')->options([
        'post' => 'Post',
        'page' => 'Page',
    ])>displayUsingLabels(),
    
    BelongsToDependency::make('User')
        ->dependsOn('type', 'type'),
    ...
];

Changelog

Please see CHANGELOG for more information on what has changed recently.

Credits

This tool extends the base Laravel Nova BelongsTo field and is inspired by Nova Dependency Container.

License

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