InfyOmLabs / laravel-generator

API and Admin Panel CRUD Generator for Laravel.
https://www.infyom.com/open-source
MIT License
3.78k stars 802 forks source link

Wrong path in src/Commands/Publish/LayoutPublishCommand.php #561

Closed BigAndini closed 6 years ago

BigAndini commented 6 years ago

In src/Commands/Publish/LayoutPublishCommand.php line 79

$path = config('infyom.laravel_generator.path.routes', app_path('routes/web.php'));

should be

$path = config('infyom.laravel_generator.path.routes', base_path('routes/web.php'));

Otherwise infyom searches for app/routes/web.php which does not exist.

Kind Regards Andi

mitulgolakiya commented 6 years ago

@inbaz great catch. I will fix it.

mitulgolakiya commented 6 years ago

@inbaz fixed.