akaunting 3.0 (the last dance)
This commit is contained in:
26
app/View/Components/Form/Group/File.php
Normal file
26
app/View/Components/Form/Group/File.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
namespace App\View\Components\Form\Group;
|
||||
|
||||
use App\Abstracts\View\Components\Form;
|
||||
|
||||
class File extends Form
|
||||
{
|
||||
public $type = 'file';
|
||||
|
||||
public $formGroupClass = 'sm:col-span-3';
|
||||
|
||||
public $custom_attributes = [
|
||||
'dropzone-class' => 'form-file dropzone-column w-1/2 h-32.5',
|
||||
];
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*
|
||||
* @return \Illuminate\Contracts\View\View|string
|
||||
*/
|
||||
public function render()
|
||||
{
|
||||
return view('components.form.group.file');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user