incr/app/Models/Milestone.php
2025-07-13 00:18:45 +02:00

21 lines
334 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @method static create(array $array)
* @method static orderBy(string $string)
*/
class Milestone extends Model
{
protected $fillable = [
'target',
'description',
];
protected $casts = [
'target' => 'integer',
];
}