1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-11 21:52:35 +01:00
invoiceninja/app/Http/Requests/InvoiceRequest.php

30 lines
737 B
PHP
Raw Normal View History

2016-05-01 21:30:39 +02:00
<?php namespace App\Http\Requests;
use App\Models\Invoice;
2016-05-01 21:30:39 +02:00
class InvoiceRequest extends EntityRequest {
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()
->firstOrFail();
}
// 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
}
2016-05-01 22:55:13 +02:00
}