I'm learning Laravel and I'm quite familiar with Laravel stuff but I've seen a question about Laravel Modules on this website and the user said that he has made a User module and a Profile module.
And he also added this as User migration:
Schema::connection(config('modules.connections.user_database'))->create('users', function (Blueprint $table) {
$table->id();
...
});
So the migration seems to be connected to modules.connection.user_database
.
Now I wonder what are Modules are ? Does anyone know an article or documentation about Modules ?
I've searched Modules in Laravel official website but there wasn't any result about this.
I would really appreciate if you describe Modules or give me a link for reading more about it...