Whenever I run any PHP artisan command (even php artisan help
), I get:
[InvalidArgumentException] Attribute [gett] does not exist
I haven't messed with my artisan file. How do I solve this?
Fixed this. Turns out I accidentally used Route::gett
instead of Route::get
. Found it by doing a global search.