Skip to content

Instantly share code, notes, and snippets.

@elliotforbes
Created November 4, 2015 21:15
Show Gist options
  • Save elliotforbes/17c2d339089735da422c to your computer and use it in GitHub Desktop.
Save elliotforbes/17c2d339089735da422c to your computer and use it in GitHub Desktop.
<?php
class ArticleController extends Controller {
public function index()
{
$articles = Article::get();
return view('someview', compact('articles'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment