ALPHA 3.0.1j

This commit is contained in:
TheGamecraft
2018-08-22 13:30:37 -04:00
parent c77d35bd14
commit 4dbdc8fd19
18 changed files with 723 additions and 7 deletions

12
app/Rank.php Normal file
View File

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