Ejemplo n.º 1
0
 public function nextReq()
 {
     $req = \Req::orderBy('req', 'DESC')->first(array('req'));
     if (isset($req)) {
         $req->req++;
         return $req->req;
     } else {
         return 1;
     }
 }