As we know that we might need to share the same data through out the footer and header of every page of the site. It is easily done using AppServiceProvider.php file which is located inside the following path:
PROJECT>APP>PROVIDERS>AppServiceProviders.php
Following code is written inside the boot() function.
public function boot()
{
view()->composer('front.layouts.main',function ($view){
$view->with('allSetting',Setting::get());
});
});
}