コード例 #1
0
 /**
  * Get an account by ID's
  *
  * @param  int $id
  *
  * @return Mgallegos\DecimaAccounting\Account
  */
 public function byIds(array $ids)
 {
     return $this->Account->whereIn('id', $ids)->get();
 }