23 lines
404 B
PHP
Executable File
23 lines
404 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Event extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $fillable = [
|
|
"name",
|
|
"description",
|
|
"event_photo_path",
|
|
'start',
|
|
'end',
|
|
];
|
|
|
|
public function tasks() {
|
|
return $this->hasMany(Task::class, 'events_id');
|
|
}
|
|
}
|