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

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');
}
}