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

21 lines
391 B
PHP

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