Example #1
0
 public function __construct($name, $label, &$model = null)
 {
     parent::__construct();
     $this->model = $model;
     $this->name($name);
     $this->label = $label;
 }
Example #2
0
 public function __construct($name, $label, &$model = null, &$model_relations = null)
 {
     parent::__construct();
     $this->attributes = Config::get('rapyd.field.attributes');
     $this->model = $model;
     $this->model_relations = $model_relations;
     $this->setName($name);
     $this->label = $label;
 }
Example #3
0
 public function __construct($name, $label, &$model = null, &$model_relations = null)
 {
     parent::__construct();
     $this->attributes = config('rapyd.fields.attributes', ['class' => 'form-control']);
     $this->model = $model;
     $this->model_relations = $model_relations;
     $this->setName($name);
     $this->label = $label;
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     $this->process_url = $this->url->append('process', 1)->get();
     $this->model_relations = new \ArrayObject();
 }
Example #5
0
 public function __construct()
 {
     parent::__construct();
     $this->process_url = $this->url->append('process', 1)->get();
 }