A Composer Package written to generate boiler-plate code of Mongo Model with Jenssegers/MongoDb using Laravel Artisan
Installation using composer:
composer require tilakputta/laravel-make-mongo
And add the command to commands array in Kernel.php
protected $commands = [
\TilakPutta\Console\ModelMakeCommand::class
];
For usage with Artisan
type in this command:
php artisan make:model ModelName
php artisan make:model Models/PermissionRole
creates app/Models/PermissionRole.php
<?php
namespace App\Models;
use Jenssegers\Mongodb\Eloquent\Model;
class PermissionRole extends Model
{
protected $collection = 'permission_roles';
protected $fillable = [
];
protected $primaryKey = 'id';
public $incrementing = false;
/**
* model life cycle event listeners
*/
public static function boot(){
parent::boot();
static::creating(function ($instance){
if (!$instance->exists) {
$instance->id = uniqid();
}
});
static::created(function ($instance){
});
}
}
Please make your contributions to make it more useful.