David Carr
David Carr
I think for the sake of compatibility, we could update `MigrateFreshCommand` to call refresh ie ``` $this->call('module:migrate-refresh', [ 'module' => $this->getModuleName(), '--database' => $this->option('database'), '--force' => $this->option('force'), '--seed' => $this->option('seed'),...
Closed, going to restrict module:migrate-fresh to reset only selected modules this way its only in the scope of the module and not the whole application.
This https://github.com/nWidart/laravel-modules/pull/1965 address this issue, I'll be doing a new release shortly.
Thanks, Yes I think it is related, I noticed the where wasn't taking effecting I've written out a new way to work for filtering, I need to do a release...
sorry for the delay, You can now for filtering this way: Can be chained or written out separately ```php $query = Xero::contacts(); if ($this->accountNumber) { $query->filter('where', 'AccountNumber=="'.$this->accountNumber.'"'); } if ($this->email)...
we have changed how caching works internally, you no longer need to setup caching and turn it on yourself its now automatic. Cache is stored in app/bootstrap/cache/modules.php if you need...
@alissn would you be able to look into this?, if not I'll look at it as soon as I get a chance.
yes, I've added details event documentation https://laravelmodules.com/docs/v11/registering-module-events#module-events
Yes, would be good to have this supported. I'll look into options.
this needs to work with the existing `app_folder` path in the config otherwise it will break for existing apps. Confirmed `app` and `src` folder work as long as the modules...