event add store test

This commit is contained in:
2020-07-19 12:15:23 +02:00
parent 7b00dd2975
commit fe14127648
14 changed files with 472 additions and 2 deletions

10
app/Models/Event.php Normal file
View File

@@ -0,0 +1,10 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Event extends Model
{
protected $guarded = [];
}