proofdb/vendor/illuminate/database/Eloquent/Attributes/DateFormat.php
2026-05-01 23:40:14 +08:00

20 lines
306 B
PHP

<?php
namespace Illuminate\Database\Eloquent\Attributes;
use Attribute;
#[Attribute(Attribute::TARGET_CLASS)]
class DateFormat
{
/**
* Create a new attribute instance.
*
* @param string $format
*/
public function __construct(public string $format)
{
//
}
}