-----------------------+----------------------------------------------------+
| Domain | Method | URI | Name | Action
| Middleware |
+--------+----------+---------------------------------+---------------------+-------------------------------------------------------------------------+----------------------------------------------------+
| | GET|HEAD | / | | Closure
| web |
| | GET|HEAD | api/user | | Closure
| api |
| | | | |
| App\Http\Middleware\Authenticate:sanctum |
| | GET|HEAD | chirps | chirps.index | App\Http\Controllers\ChirpController@index | web |
| | | | |
| App\Http\Middleware\Authenticate |
| | | | |
| Illuminate\Auth\Middleware\EnsureEmailIsVerified |
| | POST | chirps | chirps.store | App\Http\Controllers\ChirpController@store | web |
| | | | |
| App\Http\Middleware\Authenticate |
| | | | |
| Illuminate\Auth\Middleware\EnsureEmailIsVerified |
| | POST | confirm-password | | App\Http\Controllers\Auth\ConfirmablePasswordController@store | web |
| | | | |
| App\Http\Middleware\Authenticate |
| | GET|HEAD | confirm-password | password.confirm | App\Http\Controllers\Auth\ConfirmablePasswordController@show | web |
| | | | |
| App\Http\Middleware\Authenticate |
| | GET|HEAD | dashboard | dashboard | Closure
| web |
| | | | |
| App\Http\Middleware\Authenticate |
| | POST | email/verification-notification | verification.send | App\Http\Controllers\Auth\EmailVerificationNotificationController@store | web |
| | | | |
| App\Http\Middleware\Authenticate |
| | | | |
| Illuminate\Routing\Middleware\ThrottleRequests:6,1 |
| | GET|HEAD | forgot-password | password.request | App\Http\Controllers\Auth\PasswordResetLinkController@create | web |
| | | | |
| App\Http\Middleware\RedirectIfAuthenticated |
| | POST | forgot-password | password.email | App\Http\Controllers\Auth\PasswordResetLinkController@store | web |
| | | | |
| App\Http\Middleware\RedirectIfAuthenticated |
| | GET|HEAD | login | login | App\Http\Controllers\Auth\AuthenticatedSessionController@create | web |
| | | | |
| App\Http\Middleware\RedirectIfAuthenticated |
| | POST | login | | App\Http\Controllers\Auth\AuthenticatedSessionController@store | web |
| | | | |
| App\Http\Middleware\RedirectIfAuthenticated |
| | POST | logout | logout | App\Http\Controllers\Auth\AuthenticatedSessionController@destroy | web |
| | | | |
| App\Http\Middleware\Authenticate |
| | POST | register | | App\Http\Controllers\Auth\RegisteredUserController@store | web |
| | | | |
| App\Http\Middleware\RedirectIfAuthenticated |
| | GET|HEAD | register | register | App\Http\Controllers\Auth\RegisteredUserController@create | web |
| | | | |
| App\Http\Middleware\RedirectIfAuthenticated |
| | POST | reset-password | password.update | App\Http\Controllers\Auth\NewPasswordController@store | web |
| | | | |
| App\Http\Middleware\RedirectIfAuthenticated |
| | GET|HEAD | reset-password/{token} | password.reset | App\Http\Controllers\Auth\NewPasswordController@create | web |
| | | | |
| App\Http\Middleware\RedirectIfAuthenticated |
| | GET|HEAD | sanctum/csrf-cookie | | Laravel\Sanctum\Http\Controllers\CsrfCookieController@show | web |
| | GET|HEAD | verify-email | verification.notice | App\Http\Controllers\Auth\EmailVerificationPromptController@__invoke | web |
| | | | |
| App\Http\Middleware\Authenticate |
| | GET|HEAD | verify-email/{id}/{hash} | verification.verify | App\Http\Controllers\Auth\VerifyEmailController@__invoke | web |
| | | | |
| App\Http\Middleware\Authenticate |
| | | | |
| Illuminate\Routing\Middleware\ValidateSignature |
| | | | |
| Illuminate\Routing\Middleware\ThrottleRequests:6,1 |
+--------+----------+---------------------------------+---------------------+----
Hi, thanks for looking into my problem. I just copied the output of route list command from CLI here. I have all this code available at my github if you want to access the project. Here is the link https://github.com/pramodraam/laravel-chirps
Sure, I want to see that the link, http://localhost:8000/chirps, displays the form in index.blade.php. You can review this file's contents above. If I replace the existing content with a simple test text, it will render on the page without any issue. The problem is with the Blade template contents in index.blade.php
Composer installation brought in that version as I was following their bootcamp tutorial.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community