Probably /#affiliate_id is appended on client side (es. via javascript or link or emberjs).
With javascript you can get the last segment of the url using:
var lastSegment = window.location.href.split("/").pop();
Then you can send 'lastSegment' to the server via ajax.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community