App\services\NotesService::save PHP Method

save() public method

public save ( $note )
    function save($note)
    {
        $this->db->insert("notes", $note);
        return $this->db->lastInsertId();
    }