bootstrap

This commit is contained in:
2025-01-20 13:59:35 +03:00
parent aa478c1d8b
commit 32fbc234ef
7 changed files with 92 additions and 31 deletions

View File

@ -0,0 +1,26 @@
<?php
namespace App\View\Components;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class Main extends Component
{
/**
* Create a new component instance.
*/
public function __construct()
{
//
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.main');
}
}