corrected typos in models

This commit is contained in:
TLRZ Seyfferth 2017-09-14 14:03:15 +02:00
parent 00073ccafb
commit e03fb43c27
2 changed files with 3 additions and 1 deletions

View File

@ -7,4 +7,6 @@ use Illuminate\Database\Eloquent\Model;
class Benutzer extends User class Benutzer extends User
{ {
protected $table = "users"; protected $table = "users";
} }

View File

@ -8,7 +8,7 @@ class Veranstaltung extends Model
{ {
protected $table = "veranstaltungen"; protected $table = "veranstaltungen";
protected $fillable = ['name','beginn','ende','geaste','hinweise']; protected $fillable = ['name','beginn','ende','gaeste','hinweise'];
protected $dates = ['beginn', 'ende', 'created_at', 'updated_at']; protected $dates = ['beginn', 'ende', 'created_at', 'updated_at'];