change names of routes

This commit is contained in:
Milos Holba
2021-02-11 17:11:59 +01:00
parent 29fce75d35
commit 67cf7a6ced
4 changed files with 65 additions and 75 deletions
+2 -2
View File
@@ -19,8 +19,8 @@ class Language extends Model
protected static function booted()
{
static::creating(function($model) {
$model->id = Str::uuid();
static::creating(function($language) {
$language->id = Str::uuid();
});
}