123456789101112131415161718192021222324252627 |
- <?php
- namespace App\Models;
- use DateTimeInterface;
- use Illuminate\Database\Eloquent\Factories\HasFactory;
- use Illuminate\Database\Eloquent\Model;
- class Asset extends Model
- {
- use HasFactory;
- // protected $table = 'asset';
- protected $hidden = [
- //
- ];
- public $timestamps = FALSE;
- protected $appends = [];
- protected function serializeDate(DateTimeInterface $date): string
- {
- return $date->format('Y-m-d H:i:s');
- }
- }
|