1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Ninja/Intents/DownloadInvoiceIntent.php

20 lines
477 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Ninja\Intents;
2016-08-09 22:06:24 +02:00
2016-08-10 14:57:34 +02:00
use App\Libraries\Skype\SkypeResponse;
2017-01-30 20:40:43 +01:00
use App\Models\Invoice;
2016-08-09 22:06:24 +02:00
class DownloadInvoiceIntent extends InvoiceIntent
{
public function process()
{
$invoice = $this->invoice();
$message = trans('texts.' . $invoice->getEntityType()) . ' ' . $invoice->invoice_number;
$message = link_to('/download/' . $invoice->invitations[0]->invitation_key, $message);
2016-08-10 14:57:34 +02:00
return SkypeResponse::message($message);
2016-08-09 22:06:24 +02:00
}
}