You didn't show the link that you are clicking. It looks like you are using the relative path
<a href="store/cart">cart</a>
try
<a href="/finalecom/public/store/cart">cart</a>
You should let Laravel help you generate your links. Use full URLs where possible.
echo url('store/cart');
one more / in front of store
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community