ALPHA 3.0.1e

This commit is contained in:
TheGamecraft
2018-07-18 21:24:34 -04:00
parent 4fa17f4136
commit 636c17441e
22 changed files with 1272 additions and 92 deletions

12
app/Schedule.php Normal file
View File

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