Ejemplo n.º 1
0
 public function listByCode($code)
 {
     $offers = Offers::where('display_from', '<', 'CURDATE')->where('display_to', '>', 'CURDATE')->where('archive', '!=', '1')->where('trip_from', '=', $code)->get();
     return Response::json(array('success' => true, 'data' => $offers->toArray()));
 }