Support the ongoing development of Laravel.io →
posted 10 years ago
Views
Last updated 2 years ago.
0
$bar = 'hello world';
View::make('user.profile')->with('foo', $bar);

in master layout just use {{ $foo }}
Last updated 2 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 2 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.

© 2024 Laravel.io - All rights reserved.