Answer the question
In order to leave comments, you need to log in
I want to get the blade template (alerts.blade.php) through the controller. Is it necessary to create a route for this blade?
I want to get the blade template (alerts.blade.php) through the controller. Is it necessary to create a route for this blade, or can I somehow get it somehow? If so, how, and if not, what about the url? Let's prevent the situation so that a person accidentally or specifically follows the url where this piece of code lies?
I need it to get it via fetch
Answer the question
In order to leave comments, you need to log in
you can return a view through the controller
Route::get('/','[email protected]');
class ControllerName extends Controller
{
public function index() {
return view('alerts.index');
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question