global variable in laravel
In PHP, I used to define some variables in my and use them in all my pages. How can I have something like that in Laravel?header.php
I am not talking about View::share('xx', 'xx' );
Assume I want to have a variable which holds a number in it and I need this number inside all my controllers to calculate something.