Files
Atomcms-edit/app/View/Components/AppLayout.php
T
2026-05-09 17:32:17 +02:00

22 lines
353 B
PHP
Executable File

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