20 lines
333 B
PHP
20 lines
333 B
PHP
<?php
|
|
|
|
namespace App\View\Components;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class Alert extends Component
|
|
{
|
|
/**
|
|
* Get the view / contents that represent the component.
|
|
*
|
|
* @return View
|
|
*/
|
|
public function render(): View
|
|
{
|
|
return view('components.alert');
|
|
}
|
|
}
|