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

21 lines
389 B
PHP

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