Support the ongoing development of Laravel.io →
posted 9 years ago
Requests Blade
Last updated 2 years ago.
0

You should send a variable, when you return the view. For example

return View::make('')->with('requests', Friend::FriendsRequest());
Last updated 2 years ago.
0
Solution

solution:

put the next code in routes.php

 View::composer('includes.navbar', function($view)
  {
      $view->with("friendRequest", Friend::FriendsRequest()->count());
  });

better explanation in http://culttt.com/2014/02/10/using-view-composers-laravel-4/

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

drog drog Joined 24 Jul 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.