12 lines
148 B
PHP
12 lines
148 B
PHP
|
<?php
|
||
|
namespace App\Services;
|
||
|
|
||
|
class DemoService {
|
||
|
|
||
|
public function isDemoEnabled(): bool {
|
||
|
|
||
|
return config('demo.is_enabled');
|
||
|
|
||
|
}
|
||
|
}
|