摘要: 1 阅读全文
posted @ 2023-09-16 15:37 yjxQWQ 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 数字的功能 TextInput::make('图片') ->numeric()->inputMode('int')->numeric() ->default('1') ->hintIcon('heroicon-m-question-mark-circle') ->hint('单条广告使用图片数量,仅 阅读全文
posted @ 2023-09-11 13:43 yjxQWQ 阅读(19) 评论(0) 推荐(0) 编辑
摘要: ###### 那如果只有该用户才能搜索到怎么写? 可能会报错 这个选项在那个model 就用那个model model是嵌套的 ``` php artisan make:model Cloudflare -m ``` ``` $table->id(); $table->string('name'); 阅读全文
posted @ 2023-09-07 17:15 yjxQWQ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 解决relationship的同时存储数据 可能是在引用model的时候少了一些内容,导致无法传递进数据库,但是另一个函数可以做到保存入数据库,我不知道后端那个内容该怎么写,我需要看一下Laravel和filamentv3之间的关系。 我得知我写的只是检索,真正传递不是这个。 **多对多什么意思** 阅读全文
posted @ 2023-09-07 16:40 yjxQWQ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 关于条件搜索 + 多选 + 多对多的写法 比如tags那种 filament ``` Select::make('tags') // ->relationship('tags', 'name' ) //->options(Tags::all()->pluck('name', 'id')) ->rel 阅读全文
posted @ 2023-09-07 16:39 yjxQWQ 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 单选按钮 ``` Radio::make('HTTPS') ->options([ '不支持' => '不支持', '支持' => '支持', ]) ``` 阅读全文
posted @ 2023-09-05 16:39 yjxQWQ 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 上传单个文件 model文件里面 多个文件需要和tag一样写明是数组 ``` FileUpload::make('file') ->label('文件') ->image(), ``` 阅读全文
posted @ 2023-09-05 14:58 yjxQWQ 阅读(7) 评论(0) 推荐(0) 编辑
摘要: selete一些从数据库里读写 ->options(Audience::all()->pluck('name', 'id')) 有bug数据不能全部展示。 ->optionsLimit(300) 阅读全文
posted @ 2023-09-04 14:53 yjxQWQ 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ### 报错Array to string conversion 原因:数组格式无法存储进数据库 technologies是字段名 ``` use Illuminate\Database\Eloquent\Model; class App extends Model { protected $cas 阅读全文
posted @ 2023-09-04 13:50 yjxQWQ 阅读(249) 评论(0) 推荐(0) 编辑
摘要: # 无法创建其他表的数据怎么解决 [第一个原因你没有写他们的主从关系](https://www.cnblogs.com/xxdmua/p/17672170.html) [第二个原因就是你没有设置他们的和数据库对应的名字](https://www.cnblogs.com/xxdmua/p/176721 阅读全文
posted @ 2023-09-01 16:12 yjxQWQ 阅读(8) 评论(0) 推荐(0) 编辑