Install Breeze

This commit is contained in:
2026-06-05 14:49:29 +07:00
parent a7d9a5d23c
commit 5db75d1eec
62 changed files with 6439 additions and 59 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');
}
}