/**
  * Remove the specified resource from storage.
  *
  * @param  Notification $notification
  * @return Response
  */
 public function destroy(Notification $notification)
 {
     $this->notification->destroy($notification);
     flash(trans('core::core.messages.resource deleted', ['name' => 'Notification']));
     return redirect()->route('admin.notification.notification.index');
 }