App\Ninja\Transformers\AccountTransformer::includeProducts PHP Метод

includeProducts() публичный Метод

public includeProducts ( App\Models\Account $account ) : League\Fractal\Resource\Collection
$account App\Models\Account
Результат League\Fractal\Resource\Collection
    public function includeProducts(Account $account)
    {
        $transformer = new ProductTransformer($account, $this->serializer);
        return $this->includeCollection($account->products, $transformer, 'products');
    }