I want to include "Laravel Actions" package to our project, but it has some conflicts with our codes ... how can I solve it ? (package link: https://github.com/lorisleiva/laravel-actions)
The problem here is that their Facade and ours have the same name.
You can edit our core accordingly, but it will be lost when updating or you can limit automatic updates. Now the problem is in platform/core/base/helpers/action-filter.php Try inserting use Botble\Base\Supports\Action; enter as shown. Then run composer install again.
Hello, how are you
I want to include "Laravel Actions" package to our project, but it has some conflicts with our codes ... how can I solve it ? (package link: https://github.com/lorisleiva/laravel-actions)
We code in modular form and do not modify core.
You can test it again and you can show your problem so we can help you.
Here in the screenshot you can see
The problem here is that their Facade and ours have the same name.
You can edit our core accordingly, but it will be lost when updating or you can limit automatic updates.
Now the problem is in platform/core/base/helpers/action-filter.php
Try inserting use Botble\Base\Supports\Action; enter as shown.
Then run composer install again.
Thank you, this was helpful