/**
  * Display Generator Page
  *
  * @param Notification $notification
  * @return $this
  */
 public function index(Notification $notification)
 {
     return view('notifications.index')->with('notifications', $notification->all());
 }