invoiceninja/app/Ninja/Intents/DownloadInvoiceIntent.php

20 lines
477 B
PHP
Raw Permalink Normal View History

2017-01-30 21:40:43 +02:00
<?php
namespace App\Ninja\Intents;
2016-08-09 23:06:24 +03:00
2016-08-10 15:57:34 +03:00
use App\Libraries\Skype\SkypeResponse;
2017-01-30 21:40:43 +02:00
use App\Models\Invoice;
2016-08-09 23:06:24 +03: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 15:57:34 +03:00
return SkypeResponse::message($message);
2016-08-09 23:06:24 +03:00
}
}