16 lines
268 B
PHP
16 lines
268 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SerpBudgetEntry extends Model
|
|
{
|
|
protected $guarded = [];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return ['reserved_at' => 'datetime', 'reconciled_at' => 'datetime'];
|
|
}
|
|
}
|