I have a Laravel + VueJS application and I am having trouble with the following issue:
- What method would I use to return the Vue Page. Return View doesnt work which is what I expected but I am unaware what I put there.
Here's my code:
routes/web.php-
Route::get('/pizzas', function () {
return view('Pizzas');
});
the Vue file directory is resources/js/Pages/Pizzas.vue