I'm trying to generate models from an existing database at once without having to do it separately for all tables. I have tried to do this with reliese/laravel. I have executed:
php artisan -v code:models
However, I'm getting the following error.
ErrorException : mkdir(): Invalid path at C:\xampp\htdocs\schaden\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php:466 462| if ($force) { 463| return @mkdir($path, $mode, $recursive); 464| } 465|
466| return mkdir($path, $mode, $recursive); 467| } 468| 469| /** 470| * Move a directory.
Exception trace: 1 mkdir("") C:\xampp\htdocs\schaden\vendor\laravel\framework\src\Illuminate\Filesystem\Filesystem.php:466
I'm not posting the full error stack here. Can anyone help?