I installed Jenssegers MongoDB follow this Lumen and MongoDB? answer and it work.
However, I tried to create a new collection using migration schema follow the example (https://github.com/jenssegers/laravel-mongodb#schema) and it not work. My function up:
Schema::create('users', function($collection)
{
$collection->index('name');
$collection->unique('email');
});
I got an error message:
[MongoException] Collection name cannot be empty
Thank you!