I have problem and please help me
I'm getting error in this laravel php file on line 15. what could be wrong?
public function tambahdata() {  
    $data = array(
        'nama' => Input::get('nama'),
        'alamat' => Input::get('alamat'),
        'kelas' => Input::get('kelas'),
    );
    DB::table('siswa')->insert($data);
    return Redirect::to('/read')->with('message','Tambah data berhasil');
}
 
     
    