Hello, I was wondering if I could get some assistance.
So I have been working on the Chirper project that Laravel offers in the Docs and have encountered a persistent problem. When I test my application in the browser and try to access the dashboard/chirps URL I get a 404 error.
I believe I have followed the steps correctly and have double-checked all the scripts. I thought perhaps my PHP was out of date, and seeing it was, I updated it, however, the problem persisted.
Are you sure the route is supposed to be dashboard/chirps?
I haven't done Chirper, but it looks like you should be creating a /chirps route (no dashboard).
To help debug try listing your routes with artisan
php artisan route:list
That should help narrow things down.
If your route existing, but was pointing to a missing Controller you'd get a different sort of error.
@mike_isp I was wondering that myself. When I use /chirps I get a blank page. At first, I thought it was an error, but I did not realize the mistake in the way I needed to. Yes, it is /chirps that I needed to use. So on to new errors. Thank you.