Initial commit

This commit is contained in:
hackerESQ
2024-08-01 13:53:10 -05:00
commit 1984bff865
142 changed files with 17783 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
namespace App\View\Components;
use Illuminate\View\Component;
use Illuminate\View\View;
class CommonLayout extends Component
{
public function __construct(
// Slots
public mixed $body = null,
) { }
/**
* Get the view / contents that represents the component.
*/
public function render(): View
{
return view('layouts.common');
}
}