Lae/app/View/Components/AlertInfo.php

21 lines
385 B
PHP
Raw Normal View History

2023-01-14 23:44:49 +00:00
<?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');
}
}