for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JeroenG\LaravelPhotoGallery\Controllers;
class GalleryController extends Controller
{
/**
* Show a list of all the albums.
*
* @return \Illuminate\View\View
*/
public function index()
$allAlbums = \Gallery::album()->all();
return view('gallery::index', ['allAlbums' => $allAlbums]);
}