/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     //        Log::info('Dashboard is visited', ['name' => auth()->user()->fullname()]);
     $nodes = \App\Node::allDeleted()->get();
     return view('admin.index', compact('nodes'));
 }