コード例 #1
0
 /**
  * Register the form builder instance.
  *
  * @return void
  */
 protected function registerFormBuilder()
 {
     $this->app->bindShared('form', function ($app) {
         $form = new FormBuilderCollective($app['html'], $app['url'], $app['session.store']->getToken());
         return $form->setSessionStore($app['session.store']);
     });
 }
コード例 #2
0
 /**
  * Set the session store implementation.
  *
  * @param \Illuminate\Session\SessionInterface $session
  * @return $this 
  * @static 
  */
 public static function setSessionStore($session)
 {
     //Method inherited from \Collective\Html\FormBuilder
     return \App\Services\FormBuilderCollective::setSessionStore($session);
 }