mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 02:11:36 +00:00
15 lines
228 B
PHP
15 lines
228 B
PHP
<?php
|
|
|
|
namespace App\View\Components;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class AppLayout extends Component
|
|
{
|
|
public function render(): View
|
|
{
|
|
return view('layouts.app');
|
|
}
|
|
}
|