App\Http\Controllers\User\ProfileController::index PHP Method

index() public method

기본정보 보기
public index ( $user )
    public function index($user)
    {
        $user = $this->retreiveUser($user);
        $grant = $this->getGrant($user);
        return XePresenter::make('index', compact('user', 'grant'));
    }