improve document model and propagate changes. This include the change of document fixtures to better reflect what the api is effectively returning
<?php
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run()
{
Model::unguard();
// $this->call('UserTableSeeder');
}
}