I\'m working on building a small CRUD app in Laravel 5. I have a few app wide settings such as \"SiteTitle\" and \"BaseURL\" I\'d like to give my admins the ability to chang
If your app uses multiple controllers then you could define a parent controller that gets extended by all your other controllers. Within the parent controller's constructor you can retrieve the settings data and store it in a class property which will be available to all of the child controller classes. Your child controllers can simply pass this data to the view.