Skip to content

Instantly share code, notes, and snippets.

@adbrsln
Created October 15, 2018 07:17
Show Gist options
  • Save adbrsln/9173768852a6a165e5f0decf84eb8705 to your computer and use it in GitHub Desktop.
Save adbrsln/9173768852a6a165e5f0decf84eb8705 to your computer and use it in GitHub Desktop.
controller
public function showOneUser($id)
{
$users =User::findOrFail($id)->with('roles')->with('states_val')->get();
$response['data'] = $users;
return response()->json($response,200);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment