Theo Moschos

Results 3 issues of Theo Moschos

It appears that Plastic does not populate the indices with `php artisan plastic:populate` with the soft deleted records from the DB. Is this expected behaviour and if so what would...

I have got the following main model: Record mapping: ``` Map::create($this->getModelType(), function (Blueprint $map) { $map->integer('id'); $map->string('some_id'); $map->string('original_title'); $map->string('first_release_year'); $map->date('created_at')->format('yyyy-MM-dd HH:mm:ss'); $map->date('updated_at')->format('yyyy-MM-dd HH:mm:ss'); $map->nested('contributors', function (Blueprint $map) { $map->integer('id'); $map->string('name');...

I am quite new to ES and am using the `sleimanx2/plastic` package to integrate it with my app. I have got the following models: `Record` and `Contributor` In `Record` model:...