App\Ninja\Transformers\PaymentTransformer::includeClient PHP Method

includeClient() public method

public includeClient ( Payment $payment )
$payment app\models\Payment
    public function includeClient(Payment $payment)
    {
        $transformer = new ClientTransformer($this->account, $this->serializer);
        return $this->includeItem($payment->client, $transformer, 'client');
    }