定制 webparking/nova-belongs-to-dependency 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

webparking/nova-belongs-to-dependency

最新稳定版本:2.0.1

Composer 安装命令:

composer require webparking/nova-belongs-to-dependency

包简介

Extended Laravel Nova BelongsTo field that can depend on other fields

README 文档

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.

Requirements

  • PHP 7.3+
  • Nova 4

Use the 1.x versions if you need support for Nova 3

Installation

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

composer require webparking/nova-belongs-to-dependency

Usage

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

use Webparking\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 Webparking\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 Webparking\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.

统计信息

  • 总下载量: 55.57k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 12
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 12
  • Watchers: 0
  • Forks: 25
  • 开发语言: Vue

其他信息

  • 授权协议: MIT
  • 更新时间: 2020-09-01