]> git.localhorst.tv Git - alttp.git/blob - AlttpSeed.php
b160697c5856ac3a9482cc22d4a03893ee63a9e3
[alttp.git] / AlttpSeed.php
1 <?php
2
3 namespace App\Models;
4
5 use Illuminate\Database\Eloquent\Factories\HasFactory;
6 use Illuminate\Database\Eloquent\Model;
7
8 class AlttpSeed extends Model
9 {
10         use HasFactory;
11
12         protected $casts = [
13                 'error_detail' => 'array',
14                 'mystery' => 'boolean',
15                 'race' => 'boolean',
16                 'settings' => 'array',
17         ];
18
19 }