public function readNotification()
 {
     $notification = Notification::whereId(Input::get('id'))->first();
     $notification->read = 1;
     $notification->save();
 }