|
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Event extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $table = 'events';
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'title',
|
|
'text',
|
|
'link',
|
|
'start_date_time',
|
|
'end_date_time',
|
|
];
|
|
}
|