Skip to content

Instantly share code, notes, and snippets.

@Sarav-S
Last active September 23, 2016 02:52
Show Gist options
  • Save Sarav-S/bcc43dd79fea566a84ae01780a767cca to your computer and use it in GitHub Desktop.
Save Sarav-S/bcc43dd79fea566a84ae01780a767cca to your computer and use it in GitHub Desktop.
<?php
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$users = User::latest()->paginate();
return view('users.all', compact('users'));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment