摘要: Laravel Collect 集合方法:详细请参考:https://learnku.com/docs/laravel/8.x/collections/9390#method-keys // 创建一个测试集合 $collection = collect([ [ 'id' => '1', 'user_ 阅读全文
posted @ 2022-01-21 13:07 wish_yang 阅读(498) 评论(0) 推荐(0) 编辑
摘要: Laravel Model 常用属性方法: # 以下属性和方法都不是必须的,但是一般都要按需求定义一些 // 定义关联的表名,不定义的话默认此模型关联的表为 模型名s (users) protected $table = 'user'; /* 字段相关 */ # 定义主键字段名,默认是id prot 阅读全文
posted @ 2022-01-21 11:26 wish_yang 阅读(182) 评论(0) 推荐(0) 编辑