mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
testing payment api
This commit is contained in:
parent
0c251392eb
commit
7d2f635272
@ -156,13 +156,15 @@ class PaymentApiController extends BaseAPIController
|
|||||||
$this->contactMailer->sendPaymentConfirmation($payment);
|
$this->contactMailer->sendPaymentConfirmation($payment);
|
||||||
}
|
}
|
||||||
|
|
||||||
Log::info($payment);
|
|
||||||
/*
|
/*
|
||||||
$payment = Payment::scope($payment->public_id)->with('client', 'contact', 'user', 'invoice')->first();
|
$payment = Payment::scope($payment->public_id)->with('client', 'contact', 'user', 'invoice')->first();
|
||||||
$transformer = new PaymentTransformer(Auth::user()->account, Input::get('serializer'));
|
$transformer = new PaymentTransformer(Auth::user()->account, Input::get('serializer'));
|
||||||
$data = $this->createItem($payment, $transformer, 'payment');
|
$data = $this->createItem($payment, $transformer, 'payment');
|
||||||
*/
|
*/
|
||||||
$invoice = Invoice::scope($payment->invoice_id)->with('client', 'invoice_items', 'invitations')->first();
|
$invoice = Invoice::scope($invoice->public_id)->with('client', 'invoice_items', 'invitations')->first();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$transformer = new InvoiceTransformer(\Auth::user()->account, Input::get('serializer'));
|
$transformer = new InvoiceTransformer(\Auth::user()->account, Input::get('serializer'));
|
||||||
$data = $this->createItem($invoice, $transformer, 'invoice');
|
$data = $this->createItem($invoice, $transformer, 'invoice');
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user