21 lines
385 B
PHP
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');
|
|
}
|
|
}
|