jikan-rest/app/JikanApiModel.php

19 lines
520 B
PHP
Raw Normal View History

<?php
namespace App;
use App\Filters\FilterQueryString;
class JikanApiModel extends \Jenssegers\Mongodb\Eloquent\Model
{
use FilterQueryString;
/**
* The list of parameters which can be used to filter the result-set from the database.
* The available field names and "order_by" is allowed as values. If "order_by" is specified then the field name
* from the "order_by" query string parameter will be used to sort the results.
* @var string[]
*/
protected array $filters = [];
}