Add new files

This commit is contained in:
DariusIII
2024-04-28 10:45:06 +02:00
parent 1bb7251876
commit adfa6bd2d2
6 changed files with 181 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
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');
}
}