/**
  * @return \Illuminate\View\View
  */
 public function index()
 {
     $songs = $this->song->get();
     return view('songs.index', compact('songs'));
 }