Exemplo n.º 1
0
 public function showTest()
 {
     /* Test mySession */
     MySession::put('test', 'test me');
     $this->dsp->content = 'test';
     $this->dsp->addVar('var', 'Bonjour');
     $this->dsp->addVar('nom', 'Jean-Paul');
     return View::make('dispatch')->with(['dsp' => $this->dsp]);
 }