for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SET\Providers;
use Form;
use Illuminate\Support\ServiceProvider;
class CustomComponentServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
Form::component('multipleFiles', 'components.form.multiple_files', ['id']);
Form::component('selectBox', 'components.form.select_box', ['label', 'name', 'list' => [], 'multiple' => false]);
}
* Register the application services.
public function register()
//