spatie / activitylog

A very simple activity logger to monitor the users of your website or application
https://spatie.be/opensource/laravel
MIT License
582 stars 75 forks source link

Class 'CreateActivityLogTable' not found #38

Closed ghost closed 8 years ago

ghost commented 8 years ago

Good Day,

Every time I run php artisan migrate:refresh I get the following exception : [Symfony\Component\Debug\Exception\FatalErrorException] Class 'CreateActivityLogTable' not found

How do I go about rectifying this error? Currently I am circumventing it by manually deleting my database and doing fresh migrations and seeds.

Regards,

sebastiandedeyne commented 8 years ago

Does the class exist in database/migrations? And could you run composer dump-autoload and try again?

ghost commented 8 years ago

@sebastiandedeyne Yes the class exists, composer dump-autoload fixed it. Thank you for your time.