Laravel 5.5 Error on migration
Opened this issue · 4 comments
frederikkunze commented
I did follow all the installation steps and get following error when im at the step:
php artisan migrate
[Symfony\Component\Debug\Exception\FatalThrowableError] Class '' not found
dvdhoek commented
Boot should be changed to
$this->loadMigrationsFrom(DIR.'/path/to/migrations');
If you rename the migration file everything works fine.
d-nekrasov commented
I did follow all the installation steps and get following error when im at the step:
In Migrator.php line 417:
Class '' not found
I solved this problem. The problem in the name of migration
dmytro-kuchura commented
Helllo, need before migration name file write date, for examle 2017_12_20_085205_create_logs_table.php
For me it's work
askme-gpt commented
Yes ,you are right , I solved this problem . we need to add d date and random number before the table .