File "Game.php"
Full Path: /home/trinadezambia/public_html/gambling/app/Models/Game.php
File size: 409 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Models;
use App\Traits\GlobalStatus;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Game extends Model {
use HasFactory, GlobalStatus;
protected $guarded = ['id'];
protected $casts = [
'level' => 'object',
'probable_win' => 'object',
'probable_win_demo' => 'object',
];
}