File Manager

Path: /home/liffinac1/domains/impactxtmtrading.com/public_html/app/Traits/

Viewing File: TemplateTrait.php

<?php

namespace App\Traits;

use App\Models\Theme;

trait TemplateTrait
{
    public function theme(): string
    {
        $theme = Theme::where('active', true)->select(['name'])->first();
        return $theme->name;
    }
}