示例#1
0
 /**
  * Get list powerful from a id
  * @var array()
  * @return array()
  */
 public static function getList($arg)
 {
     $id = json_decode($arg);
     $data = Powerful::whereIn('id', $id)->get();
     return $data;
 }