Support the ongoing development of Laravel.io →
posted 9 years ago
Views
Last updated 1 year ago.
0

try using with()

return View::make('pages.signature')->with('data', array("data" => $this->api($this->name)));
0

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
));
0

Sign in to participate in this thread!

Eventy

Your banner here too?

DraugDev draugdev Joined 26 Jan 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.