Ekapp/skolehjem/app/Event.php

24 lines
532 B
PHP
Raw Normal View History

2020-06-09 08:45:16 +00:00
<?php
2020-07-27 08:43:22 +00:00
//The Model to a certain Controller, should contain a class with Controller name to which it belongs.
// Allows needed strings to passed onto the database. if there is none. class should appear empty.
//Reference to where the file belongs.
2020-06-09 08:45:16 +00:00
namespace App;
2020-07-27 08:43:22 +00:00
//allows the use of Model library
2020-06-09 08:45:16 +00:00
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", "date"
2020-06-18 06:01:42 +00:00
];
2020-06-09 08:45:16 +00:00
}