dienstplan/app/Veranstaltung.php
2017-06-15 12:47:36 +02:00

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');
}
}