mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
19 lines
417 B
PHP
19 lines
417 B
PHP
<?php namespace App\Http\Requests;
|
|
|
|
class InvoiceRequest extends EntityRequest {
|
|
|
|
protected $entityType = ENTITY_INVOICE;
|
|
|
|
public function entity()
|
|
{
|
|
$invoice = parent::entity();
|
|
|
|
// eager load the invoice items
|
|
if ($invoice && ! $invoice->relationLoaded('invoice_items')) {
|
|
$invoice->load('invoice_items');
|
|
}
|
|
|
|
return $invoice;
|
|
}
|
|
|
|
} |