[Vuejs]-DELETE route using vue-resource and laravel throwing 500 error

0👍

is the auth middleware applied on the route? because the error code 403 seems like is forbidden error.

if the auth middleware applied on your route send Authorization header with the request.

{ 
    headers: { 
        Authorization: 'Bearer AUTHENTICATION_TOKEN'
    }
}

Leave a comment