11 lines
135 B
PHP
Executable file
11 lines
135 B
PHP
Executable file
<?php namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Periode extends Model {
|
|
|
|
protected $fillable = [
|
|
'days'
|
|
];
|
|
|
|
}
|