1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00
Files
openstamanager/app/View/Components/Inputs/Textarea.php
2021-03-15 14:48:56 +01:00

20 lines
386 B
PHP

<?php
namespace App\View\Components\Inputs;
use App\View\Components\InputWrapper;
use Illuminate\View\Component;
class Textarea extends InputWrapper
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.inputs.textarea');
}
}