File "Settings.php"
Full Path: /home/fundopuh/trader.fxex.org/app/Models/Settings.php
File size: 541 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// this Code is Cracked by dharunMods-YouTube-Channel
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Settings extends Model
{
use HasFactory;
protected $guarded = [];
protected $casts = [
'return_capital' => 'boolean',
'should_cancel_plan' => 'boolean',
'modules' => 'array',
'themes' => 'array'
];
// public function getModulesAttribute($value)
// {
// return ucfirst($value);
// }
}