mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-12-30 00:50:52 -05:00
22 lines
403 B
PHP
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();
|
|
}
|
|
}
|