Model

MySQL Example

<?php

namespace App\models;

class Member extends AbstractMysqlModel
{
    protected static $table = 'member';
}

Elasticsearch Example

<?php

namespace App\models;

class Test extends AbstractEsModel
{
    protected static $index = 'test';
    protected static $type = 'test';
}
G

General Example

Last updated

Was this helpful?