23 lines
440 B
PHP
23 lines
440 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Veranstaltung extends Model
|
|
{
|
|
protected $table = "veranstaltungen";
|
|
|
|
protected $fillable = ['name','beginn','ende','geaste','hinweise'];
|
|
|
|
protected $dates = ['beginn', 'ende'];
|
|
|
|
public function eintragungen(){
|
|
return $this->hasMany('App\Eintragung');
|
|
}
|
|
|
|
public function einteilungen(){
|
|
return $this->hasMany('App\Einteilung');
|
|
}
|
|
}
|