I am trying to always show the same content in the footer (Content that is stored in a field of the data base). The footer has to appear in all the pages of the web.
The problem is not how to pose it:
$footer = DB::select('SELECT * FROM generos');
return view('home', ['footer' => $footer]);
Pass variable $footer
to all view that contains footer?
Is there no way to create the variable $ footer in a single site and be able to pass it to all the views?