mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 01:44:45 +02:00

* Remove old admin * Remove controller test * Remove unused exceptions * Remove unused files * More small tweaks * Fix doc block * Remove unused service * Restore these * Add back autoDeploy * Revert "Add back autoDeploy" This reverts commit 630c1e08acf8056ce8e612f376fcd00c23d90aea. * Add these back * Add back exception * Remove ApiController again --------- Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Co-authored-by: Boy132 <mail@boy132.de> Co-authored-by: notCharles <charles@pelican.dev>
30 lines
860 B
PHP
30 lines
860 B
PHP
<?php
|
|
|
|
namespace App\Http\ViewComposers;
|
|
|
|
use App\Services\Helpers\AssetHashService;
|
|
use Illuminate\View\View;
|
|
|
|
readonly class AssetComposer
|
|
{
|
|
public function __construct(private AssetHashService $assetHashService)
|
|
{
|
|
}
|
|
|
|
public function compose(View $view): void
|
|
{
|
|
$view->with('asset', $this->assetHashService);
|
|
|
|
$view->with('siteConfiguration', [
|
|
'name' => config('app.name', 'Panel'),
|
|
'locale' => config('app.locale') ?? 'en',
|
|
'recaptcha' => [
|
|
'enabled' => config('turnstile.turnstile_enabled', false),
|
|
'siteKey' => config('turnstile.turnstile_site_key') ?? '',
|
|
],
|
|
'usesSyncDriver' => config('queue.default') === 'sync',
|
|
'serverDescriptionsEditable' => config('panel.editable_server_descriptions'),
|
|
]);
|
|
}
|
|
}
|