22 lines
334 B
PHP
22 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',
|
||
|
|
];
|
||
|
|
}
|