openstamanager/app/View/Components/Inputs/File.php

22 lines
406 B
PHP

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