Update schedule editor

This commit is contained in:
Mathieu Lagace
2019-12-22 17:45:44 -05:00
parent 047633c2ce
commit 2c18dc8c1d
9 changed files with 448 additions and 79 deletions

12
app/EventType.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class EventType extends Model
{
protected $casts = [
'schedule_model' => 'array',
];
}