for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Itstructure\FieldWidgets;
/**
* Class FieldTypeFile
* Class for upload file.
*
* @package Itstructure\FieldWidgets
*/
class FieldTypeFile extends FieldType
{
* @return string
public function run(): string
return $this->getField()
->fileInput(
$this->getOptions()
)
->label($this->getLabel());
}