Skip to content

Instantly share code, notes, and snippets.

@elliotforbes
Last active November 4, 2015 21:01
Show Gist options
  • Save elliotforbes/0613804b2730fb680879 to your computer and use it in GitHub Desktop.
Save elliotforbes/0613804b2730fb680879 to your computer and use it in GitHub Desktop.
/**
* Display a listing of the resource.
*
* @return Response
*/
public function index()
{
$user = \Auth::user();
$userCount = User::count();
if($this->isAdmin())
return view('admin.index', compact('userCount'));
else
return redirect('');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment