Working on controllers

This commit is contained in:
2020-06-18 08:01:42 +02:00
parent a2c7d619b1
commit 06bab0a120
3 changed files with 133 additions and 102 deletions
+8 -1
View File
@@ -6,5 +6,12 @@ use Illuminate\Database\Eloquent\Model;
class Event extends Model
{
//
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
"name", "description"
];
}