How to share data across all Laravel Views
Share you Data Across all Laravel Views in One Simple File Modification.
If you wanted to share data across your different views in Laravel and I found this quick way to do it.
In your Providers/AppServiceProvider.php
in the boot() function insert the following to share data across all views.
View::share('channels', Channel::all());