App\services\NotesService::save PHP 메소드

save() 공개 메소드

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