Example #1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $this->authorize('show', new User());
     $users = User::with('country.translations')->with('currency')->with('language')->orderBy('name')->paginate(25);
     return view('users.index', compact('users'));
 }