Ejemplo n.º 1
0
 public function getVotes($ip = NULL, $id = NULL)
 {
     return $id == NULL ? Vote::all() : Vote::where('ip_address', '=', $ip)->where('id_post', '=', $id)->get();
 }