Example #1
0
 /**
  * @param Request $request
  * @return \Illuminate\View\View
  *
  * the shell html and javascript that eventually loads the encrypted pages
  */
 public function master(Request $request)
 {
     //returns nothing, just sets the keys for LSS
     CryptoService::setSessionKeys();
     //return the shell which will loads all the js and the pade loader
     return view('master');
 }