mgsmus public function __construct()
{
$this->middleware(function ($request, $next) {
$this->user = Auth::user();
view()->share('u', $this->user);
return $next($request);
});
Carbon::setLocale('pt_BR');
$this->redis = Redis::connection();
$this->settings = Settings::first();
$this->payment_provider = PaymentsProviders::where('provider_status', 1)->get();
Controller.php dosyasasında kullanmışım sadece bunu silip onu mu eklemeliyim ?