v1.5.15 Added multiple events, not done

This commit is contained in:
2021-04-27 11:23:25 +02:00
parent 384070c40b
commit e5126ae5ae
13 changed files with 295 additions and 63 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class MultipleEventsParent extends Model
{
protected $table = "multiple_events_parent";
protected $fillable = [
'week', 'resource_id'
];
}