💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
1.新增或更新把时间从`timestamp`改为`time` ``` public function fromDateTime($value){ return time(parent::fromDateTime($value)); } ``` ***** 2.fillable (白名单)与 guarded (黑名单) ``` protected $fillable = ['name']; protected $guarded = ['price']; ``` 注意:只对create()方法有效果