modules
modules copied to clipboard
:package: Modules package for Laravel
Hello, Is it possible to update the module here to Laravel 9 so that the module runs on the new Laravel version Up to date.
Unable to install this package in a laravel 9.
``` Caffeinated\Modules\Support\ServiceProvider ``` Imports a Factory class which does not exist. ``` use Illuminate\Database\Eloquent\Factory; ``` Should be ``` use Illuminate\Database\Eloquent\Factories\Factory; ``` I would submit a pull request, but you haven't...
Hello, I have the SPA application which uses the modules package. The main routes file (resources/web.php) contains SPA route: `Route::any('/{any}', 'SPAController')->where('any', '.*');` My module's route file contains some other routes...
I want to generate two controllers and views to separate the frontend and backend. Is there any way to generate such modules using the available commands?
Also added `--api` option for `make:module:controller`
When using the module:seed command with the --class options provided it is not honoring the --class option. Instead it is checking for the existance of the default path {ModuleName}DatabaseSeeder and...