12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace App\Models;
- use DateTimeInterface;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class Menu extends Model
- {
- use HasFactory;
- protected $table = 'menu';
- protected $hidden = [
- //
- ];
- protected $casts = [
- 'create_time' => 'datetime',
- ];
- protected $appends = [];
- protected function serializeDate(DateTimeInterface $date): string
- {
- return $date->format('Y-m-d H:i:s');
- }
- }
|