Install Breeze

This commit is contained in:
Sallu9007
2025-01-26 00:16:23 +05:30
parent 2fb3a931f8
commit a79095624e
56 changed files with 4697 additions and 8 deletions

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');
}
}