ok

Mini Shell

Direktori : /home2/selectio/public_html/billingsoftwarenew/core/vendor/laramin/utility/src/
Upload File :
Current File : /home2/selectio/public_html/billingsoftwarenew/core/vendor/laramin/utility/src/Helpmate.php

<?php

namespace Laramin\Utility;

use App\Models\GeneralSetting;

class Helpmate{
    public static function sysPass(){
        $fileExists = file_exists(__DIR__.'/laramin.json');
        $general = cache()->get('GeneralSetting');
        if (!$general) {
            $general = GeneralSetting::first();
        }
        return true;

    }

    public static function appUrl(){
        $current = $_SERVER['REQUEST_SCHEME'] . '://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
        $url = substr($current, 0, -9);
        return  $url;
    }
}


Zerion Mini Shell 1.0