PHP artisan route:list in Wave
If you are trying to run, php artistan route:list
, in Wave you may get an error notification because there is a small error in /wave/routes/web.php
, line number 21.
It should be:
Route::post('/billing/webhook', '\Wave\Http\Controllers\WebhookController@handleWebhook');
instead of:
Route::post('/billing/webhook', 'Wave\Http\Controllers\WebhookController@handleWebhook');
It is missing the forward slash \
, this will be updated in version 1.0-RC9
Thanks :)
Hi there,
In case that anyone comes across this in the future, this should already be fixed in the latest Wave version! 🙌