[Vuejs]-Redirecting to a laravel's web route from a vue component without using vue-router

0👍

Sessions are not available in laravel api. To use sessions you can define your route in web routes or add \Illuminate\Session\Middleware\StartSession::class to api’s middlewares in App/Http/Kernel.php

Leave a comment