Last active
September 23, 2016 02:52
-
-
Save Sarav-S/bcc43dd79fea566a84ae01780a767cca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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