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

You can use something like this in BaseController

    protected function setupLayout()
    {
// Share data through views
        View::share('data', $dataFromBaseController);
    }

And then, in the all views you can use {{$data}} to show $dataFromBaseController value

Sorry my poor english.

Last updated 1 year ago.
0

This may help,

Try this,

return View::make('dashboard-default', compact('data','messages'));
Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

dennusb dennusb Joined 1 Sep 2014

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.