Support the ongoing development of Laravel.io →
posted 11 years ago
Views

Hi I wanna send a variable to master. How can I do it?

Thanks


class UserController extends BaseController {

    /**
     * The layout that should be used for responses.
     */
    protected $layout = 'layouts.master';

    /**
     * Show the user profile.
     */
    public function showProfile()
    {
        $this->layout->content = View::make('user.profile');
    }

}


Last updated 3 years ago.
0
$bar = 'hello world';
View::make('user.profile')->with('foo', $bar);

in master layout just use {{ $foo }}
Last updated 3 years ago.
0

You can add variables to layouts.master by adding a property to your layout object.

public function showProfile()
{
    $this->layout->foo = 'I am available as $foo in layouts.master';
    $this->layout->content = View::make('user.profile');
}
Last updated 3 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

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.

© 2025 Laravel.io - All rights reserved.