Ejemplo n.º 1
0
 /**
  * Get a status by id.
  * @param $id
  * @return null
  */
 public static function getStatusById($id)
 {
     try {
         $status = Status::where('id', $id)->firstOrFail();
         return $status;
     } catch (Exception $e) {
         return null;
     }
 }