Made authorization.

This commit is contained in:
2023-07-06 10:48:32 +06:00
parent 6b2aff910b
commit f481ee765d
17 changed files with 356 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
<?php declare(strict_types=1);
namespace App\View\Components\Public;
use Illuminate\View\Component;
use Illuminate\View\View;
final class Layout extends Component
{
/**
* @inheritDoc
*/
public function render(): View
{
return view('public.layout.app');
}
}