Skip to content

Instantly share code, notes, and snippets.

@saeedhajinasiri
Created July 21, 2020 05:50
Show Gist options
  • Save saeedhajinasiri/80ce13bbc34f7ad15689bf6efdfe2458 to your computer and use it in GitHub Desktop.
Save saeedhajinasiri/80ce13bbc34f7ad15689bf6efdfe2458 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\User;
class UserController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$data = User::paginate(10);
return view('users',compact('data'));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment