<?php
namespace AppHttpControllers;
use AppHttpControllersController;
use IlluminateSupportFacadesCache;
class UserController extends Controller
{
/**
* Show the profile for the given user.
*
* @param int $id
* @return Response
*/
public function showProfile($id)
{
$user = Cache::get('user:'.$id);
return view('profile', ['user' => $user]);
}
}