1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00
invoiceninja/app/Ninja/Intents/DownloadInvoiceIntent.php

21 lines
534 B
PHP
Raw Normal View History

2016-08-09 22:06:24 +02:00
<?php namespace App\Ninja\Intents;
use App\Models\EntityModel;
use App\Models\Invoice;
use Auth;
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);
return view('bots.skype.message', [
'message' => $message
])->render();
}
}