try using with()
return View::make('pages.signature')->with('data', array("data" => $this->api($this->name)));
you are not passing a name variable to the view
return View::make('pages.signature', array(
"data" => $this->api($this->name),
"name" => $name // passing the name var
));
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community