shalvah
shalvah

Reputation: 895

Laravel - artisan commands return InvalidArgumentException

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?

Upvotes: 0

Views: 1091

Answers (1)

shalvah
shalvah

Reputation: 895

Fixed this. Turns out I accidentally used Route::gett instead of Route::get. Found it by doing a global search.

Upvotes: 1

Related Questions