| Install | |
|---|---|
composer require didbot/didbot-api |
|
| Latest Version: | 0.2.1 |
| PHP: | >=7.0 |
API for didbot.com or a self hosted didbot application.
Install the package via composer:
composer require didbot/didbot-api
Add the service provider to the config/app.php providers array
// config/app.php
'providers' => [
...
Didbot\DidbotApi\ApiServiceProvider::class
];
Finally add the Didbot\DidbotApi\Traits\HasDids trait to the User model.
use Didbot\DidbotApi\Traits\HasDids;
class User
{
use HasDids;
// ...
}
To take advantage of full text search the recommended database is postgresql.