Akaunting/app/View/Components/Alert/Success.php

19 lines
354 B
PHP
Raw Normal View History

2023-04-20 15:28:33 +00:00
<?php
namespace App\View\Components\Alert;
use App\View\Components\Alert as Component;
class Success extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.alert.success');
}
}