vito/app/View/Components/GuestLayout.php
Saeed Vaziry 5c72f12490 init
2023-07-02 12:47:50 +02:00

15 lines
232 B
PHP

<?php
namespace App\View\Components;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class GuestLayout extends Component
{
public function render(): View
{
return view('layouts.guest');
}
}