File "NewDeposit.php"

Full Path: /home/fundopuh/trader.fxex.org/app/Http/Livewire/User/NewDeposit.php
File size: 353 bytes
MIME-type: text/x-php
Charset: utf-8

<?php  
// this Code is Cracked by dharunMods-YouTube-Channel

namespace App\Http\Livewire\User;

use App\Models\Settings;
use Livewire\Component;

class NewDeposit extends Component
{
    public function render()
    {
        $settings = Settings::select('theme')->find(1);
        return view("{$settings->theme}.livewire.user.new-deposit");
    }
}