Illuminate\Support\Facades\Date类的对象无法转换为字符串



在将我的项目从laravel 7升级到laravel 8后,我遇到了这个错误。有人能为项目向我解释一下吗;s迁移运行良好,但现在我无法运行artisan迁移

$table->date('booked_from')->default(new Date());
$table->date('booked_to')->default(new Date());

作为Don’t Panic在上述评论中提供的众多解决方案之一的替代方案,您还可以利用Laravel附带的Carbon DateTime包。

$table->date('booked_from'->default(Carbon::now());
$table->date('booked_to')->default(Carbon::now());

最新更新