withoutMagicalCreation()->from(['by' => $by]); } public function __construct(public string $by, public bool $direction = false) { } /** * @return array */ public function toMeilisearch(): array { return [$this->by . ':' . ($this->direction ? 'desc' : 'asc')]; } }