1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-13 22:54:25 +01:00
invoiceninja/app/Http/Requests/InvoiceRequest.php

35 lines
803 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Http\Requests;
2016-05-01 21:30:39 +02:00
use App\Models\Invoice;
2017-01-30 17:05:31 +01:00
class InvoiceRequest extends EntityRequest
{
2016-05-01 21:30:39 +02:00
protected $entityType = ENTITY_INVOICE;
public function entity()
{
2016-05-01 22:55:13 +02:00
$invoice = parent::entity();
// support loading an invoice by its invoice number
if ($this->invoice_number && ! $invoice) {
$invoice = Invoice::scope()
->whereInvoiceNumber($this->invoice_number)
->withTrashed()
2017-03-20 12:55:38 +01:00
->first();
if (! $invoice) {
abort(404);
}
}
// eager load the invoice items
if ($invoice && ! $invoice->relationLoaded('invoice_items')) {
2016-05-01 22:55:13 +02:00
$invoice->load('invoice_items');
2016-05-01 21:30:39 +02:00
}
2016-05-01 22:55:13 +02:00
return $invoice;
2016-05-01 21:30:39 +02:00
}
}