数据库:DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci created_at timestamp NULL DEFAULT NULL, updated_at timestamp NULL DEFAULT NULL, deleted_at timestamp NULL DEFAULT NULL,
created_at
updated_at
deleted_at
illuminate/database 是吧? 自己去laravel 看文档
laravel 【use DefaultDatetimeFormat;】webman不知道该如何处理
namespace app\common\traits; use Carbon\CarbonInterface; use DateTimeInterface; trait DateFormat { protected function serializeDate(DateTimeInterface $date): string { return $date->format(CarbonInterface::DEFAULT_TO_STRING_FORMAT); // return $date->format($this->dateFormat ?: 'Y-m-d H:i:s'); } }
model里 use DateFormat;
illuminate/database 是吧?
自己去laravel 看文档
laravel 【use DefaultDatetimeFormat;】webman不知道该如何处理
model里
use DateFormat;