承接 famcare/searchable-select 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

famcare/searchable-select

最新稳定版本:1.3.2

Composer 安装命令:

composer require famcare/searchable-select

包简介

A Laravel Nova field.

README 文档

README

A Searchable Select Field for Laravel Nova. This field joins the functionalities of the BelongsTofield and Select field.

Basically a regular Select field where you specify the resource you want to search for and no "relationships" are needed. This means, you can use it also in additional JSON fields in your database.

Installation

Composer

composer require sloveniangooner/searchable-select

Usage

Just like the regular select field, but instead of the options method you provide the resource method with your resource name.

use Sloveniangooner\SearchableSelect\SearchableSelect;
...

SearchableSelect::make('Content', 'content_id')->resource("contents")
... or
SearchableSelect::make("Content", "content_id")->resource(\App\Nova\Content::class)

You can pass all the regular options like:

SearchableSelect::make('Content', 'content_id')
    ->resource("contents")
    ->help("Help text")
    ->displayUsingLabels()
    ->nullable()

But also three additional options:

SearchableSelect::make('Content', 'content_id')
    ->resource("contents")
    ->label("custom_label_field") // Defaults to the static $title attribute of the resource class
    ->labelPrefix("custom_prefix_field") // Allows you to prefix the label field with one other field, i.e. "code":"label"
    ->value("custom_value_field") // Defaults to 'id'

You can now also choose the multiple option. Needs a text or json field in the database.

SearchableSelect::make('Content', 'content_id')
    ->resource("contents")
    ->multiple()
    ->displayUsingLabels()
    ->nullable()

Another option is to define the maximum number of items shown in the search. (Default: 20)

SearchableSelect::make("Content", "content_id")
                ->resource("contents")
                ->max(10)

You can use the base model's search method instead of the Nova resource's search method with useBaseSearch().

SearchableSelect::make('Content', 'content_id')
    ->resource("contents")
    ->useBaseSearch()

统计信息

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

GitHub 信息

  • Stars: 1
  • Watchers: 3
  • Forks: 0
  • 开发语言: Vue

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-06-30

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固