File "TemplateTrait.php"
Full Path: /home/fundopuh/trader.fxex.org/app/Traits/TemplateTrait.php
File size: 284 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// this Code is Cracked by dharunMods-YouTube-Channel
namespace App\Traits;
use App\Models\Theme;
trait TemplateTrait
{
public function theme(): string
{
$theme = Theme::where('active', true)->select(['name'])->first();
return $theme->name;
}
}