19 lines
349 B
PHP
19 lines
349 B
PHP
<?php
|
|
|
|
namespace App\View\Components;
|
|
|
|
use Closure;
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class AlertSuccess extends Component
|
|
{
|
|
/**
|
|
* Get the view / contents that represent the component.
|
|
*/
|
|
public function render(): View|string|Closure
|
|
{
|
|
return view('components.alert-success');
|
|
}
|
|
}
|