Lae/app/View/Components/AlertInfo.php
2023-01-15 07:44:49 +08:00

21 lines
385 B
PHP

<?php
namespace App\View\Components;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class AlertInfo extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return View|Closure|string
*/
public function render(): View|Closure|string
{
return view('components.alert-info');
}
}