skip to Main Content

button onclick="window.location.href…" not redirecting to View in different folder – Html

<form> <div> <input for="IPMaquina" type="text" placeholder="IP da Máquina"> <button>Estado Máquina</button> <button type="button" onclick="window.location.href='JCash_SubPages/VNEconfig';" style="text-decoration: none; color: black;">Configuração</button> </div> For some reason the onclick action won't redirect to the VNEconfig View and leads to a 404 Error If I move it…

VIEW QUESTION

How to pass data to AppServiceProvider? – Laravel

I'm trying to pass the $product variable in this controller to multiple view files. function show($lang, $slug) { $product = Product::where('slug', $slug)->firstOrFail(); $mightAlsoLike = Product::where('slug', '!=', $slug)->MightAlsoLike()->get(); return view('shop_show')->with(['product' => $product, 'mightAlsoLike' => $mightAlsoLike]); } I'm using view composer in…

VIEW QUESTION
Back To Top
Search