Added Methods, routes and Views for VeranstaltungController

This commit is contained in:
chrosey
2017-06-14 23:44:54 +02:00
parent 46e092f04f
commit 1deb0f59fc
9 changed files with 195 additions and 15 deletions
+4 -1
View File
@@ -7,5 +7,8 @@ use Illuminate\Database\Eloquent\Model;
class Veranstaltung extends Model
{
protected $table = "veranstaltungen";
//
protected $fillable = ['name','beginn','ende','geaste','hinweise'];
protected $dates = ['beginn', 'ende'];
}