2021-09-04 00:44:54 +01:00
|
|
|
<?php
|
|
|
|
|
2023-01-15 00:04:00 +00:00
|
|
|
namespace App\Services;
|
2021-09-04 00:44:54 +01:00
|
|
|
|
2023-01-15 00:04:00 +00:00
|
|
|
class DemoService
|
|
|
|
{
|
|
|
|
public function isDemoEnabled(): bool
|
|
|
|
{
|
2021-09-04 00:44:54 +01:00
|
|
|
return config('demo.is_enabled');
|
|
|
|
}
|
|
|
|
}
|