Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
app
/
Models
:
Settings.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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); // } }