0

I want to install this package called Laravel Modules and because my Laravel version is v8, I need to install the version 8 of Laravel Modules as well.

By default the command line for doing that is this:

composer require nwidart/laravel-module

So how can I do that?

japose7523
  • 29
  • 2
  • 15

1 Answers1

2

You just have a spelling mistake, it is as simple as that,

Run the following:

composer require nwidart/laravel-modules 8

it is nwidart/laravel-modules not module

RG Servers
  • 1,726
  • 2
  • 11
  • 27