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