Ekapp/skolehjem/app/Event.php

18 lines
248 B
PHP
Raw Normal View History

2020-06-09 08:45:16 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Event extends Model
{
2020-06-18 06:01:42 +00:00
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
"name", "description"
];
2020-06-09 08:45:16 +00:00
}