File Manager

Path: /home/liffinac1/domains/bank.stellerpay.ca/public_html/app/Http/Livewire/Admin/

Viewing File: ThemeDisplay.php

<?php

namespace App\Http\Livewire\Admin;

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

class ThemeDisplay extends Component
{
    public function render()
    {
        return view('livewire.admin.theme-display');
    }

    public function setTheme($theme)
    {

        Settings::where('id', '1')
            ->update([
                'website_theme' => $theme,
            ]);
    }
}