Lae/app/View/Components/Alert.php

18 lines
306 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.
*/
public function render(): View
{
return view('components.alert');
}
}