https
変数を使用して、またはhttp
変数に依存して、コントローラー関数からビューを返したいです。私はredirect
それをしたくないし、使用したりhttps
機能しhttp
たいだけです。出来ますか?View::make()
Response::view()
例:
public function getSiteContent($https = false)
{
if($https===true){
//return to secure https url
return View::make('sites.content');
}
else{
//return to http url
return View::make('sites.content');
}
}