mirror of
https://github.com/lsky-org/lsky-pro.git
synced 2025-01-08 11:57:52 +08:00
14 lines
284 B
PHP
14 lines
284 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Carbon\CarbonInterface;
|
|
|
|
abstract class Model extends \Illuminate\Database\Eloquent\Model
|
|
{
|
|
protected function serializeDate(\DateTimeInterface $date): string
|
|
{
|
|
return $date->format(CarbonInterface::DEFAULT_TO_STRING_FORMAT);
|
|
}
|
|
}
|