Exemplo n.º 1
0
 /**
  * @return array
  */
 public function skyFilter()
 {
     return ['currency_id' => ['label' => 'Currency', 'type' => 'select', 'options' => Currency::all()->lists('slug', 'id')], 'price' => ['type' => 'text'], 'active' => ['type' => 'checkbox']];
 }
Exemplo n.º 2
0
 /**
  * @return array
  */
 public function skyFilter()
 {
     return ['currency_id' => ['label' => 'Currency', 'type' => 'select', 'options' => Currency::all()->lists('slug', 'id')], 'quantity' => ['type' => 'text'], 'created_at' => ['type' => 'date'], 'updated_at' => ['type' => 'date']];
 }