db->for(CoffeeModel::TABLE) ->insert([ CoffeeModel::ID->value => $id, CoffeeModel::DATE_TIMESTAMP_CREATED->value => time(), ]); // Return 201 Created and entity id if successful return $insert ? new Response($id, 201) : $this->resp_database_error(); } }