all() public method

public all ( )
コード例 #1
0
 public function index()
 {
     view()->share('current_action', 'getLive');
     $livestream = new LivestreamCollection();
     $streams = $livestream->all();
     $featuredStream = $livestream->featured();
     return view('livestreams.index', compact('streams', 'featuredStream'));
 }