load->model('notification_model', 'notif'); $this->load->library('form_validation'); } public function index() { $this->load->view('includes/header'); $this->load->view('appnotification/index'); $this->load->view('includes/footer'); } public function send() { $topic = $this->input->post('topic'); $title = $this->input->post('title'); $message = $this->input->post('message'); $this->notif->send_notif($title, $message, $topic); $this->session->set_flashdata('send', 'Notifikasi berhasil dikirim'); redirect('appnotification/index'); } }