rtconner / laravel-tagging

Tag support for Laravel Eloquent models - Taggable Trait
MIT License
882 stars 168 forks source link

Changed Base path to databasePath while Publishing Migration files in boot() #35

Closed kirananils closed 9 years ago

kirananils commented 9 years ago

Some Laravel Platform like Orchestral Platform use different Folder Structure. The migration files are moved to base_path/database/ according to laravel 5 folder structure. Where as in Orchestra's folder structure it needed to be moved to the path base_path/resources/database/. So in-order to work in different folder structure, database path should be taken instead of taking the base path. It will work seamlessly in different folder structure.

rtconner commented 9 years ago

Thank you. I didn't know that method existed.

kirananils commented 9 years ago

Me too .. I just go it from here .. https://github.com/orchestral/platform/issues/48