modules
modules copied to clipboard
:package: Modules package for Laravel
How are 3rd party dependencies for modules handled? Do I install them into the root of the project or Can I install them root of module?
Fresh laravel project with only caffeinated install Create Module User RouteServiceProvider ` protected function mapWebRoutes() { Route::group([ 'middleware' => 'web', 'namespace' => $this->namespace, ], function ($router) { require module_path('user', 'Routes/web.php',...
hello ,, is there is any way to create factory in specific module by command or i have to make in manually.... thanks
https://github.com/caffeinated/modules/blob/e33e4b7d33f95789ae8a479d10b05e9f19f576f4/src/RepositoryManager.php#L70 Hi, I stumbled about the following issue. In the RepositoryManager (see referenced file) the config-value for "modules.location.$location.provider" will never be loaded, since the key in the Config-File "modules.php" is...
Let's say someone make a module called "CustomEmailProvider". They support all kinds of email provider, but they don't support, say, MailGun. You want to have a dependency over "CustomMailProvider" so...
git分支管理,A新建了新的模块Ceshi,然后提交到远程,然后B拉取代码到本地,Ceshi的路由找不到,需要B在本地重新新增一个模块,然后Ceshi路由才能显示出来