invoiceninja/app/Ninja/Intents/UpdateInvoiceIntent.php
2016-08-09 23:06:24 +03:00

22 lines
403 B
PHP

<?php namespace App\Ninja\Intents;
use Exception;
use App\Models\EntityModel;
use App\Models\Invoice;
class UpdateInvoiceIntent extends InvoiceIntent
{
public function process()
{
$invoice = $this->invoice();
$data = $this->parseFields();
dd($data);
return view('bots.skype.invoice', [
'invoice' => $invoice
])->render();
}
}