Example #1
0
 /**
  * See a list of all the song titles
  * @return \Illuminate\View\View
  */
 public function listAll()
 {
     $songs = Song::getAllTitles();
     return view('song.index', ['songs' => $songs]);
 }