forge/app/View/Components/AppLayout.php
2025-01-30 00:23:55 -05:00

20 lines
322 B
PHP

<?php
declare(strict_types=1);
namespace App\View\Components;
use Illuminate\View\Component;
use Illuminate\View\View;
class AppLayout extends Component
{
/**
* Get the view / contents that represents the component.
*/
public function render(): View
{
return view('layouts.app');
}
}