i have this code in controller
$Headercategory=Categories::where('status','1')->orderby('order')->get();
return view('front.home',['Headercategory'=>$Headercategory]
all my controlles will include "Headercategory" that mean i have to do same code with all controllers i have.
is there any way to make this code public in all project? without no need to add it in all controllers