1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 07:02:34 +01:00
invoiceninja/app/Http/Requests/VendorRequest.php

21 lines
409 B
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Http\Requests;
2016-05-01 14:04:55 +02:00
2017-01-30 17:05:31 +01:00
class VendorRequest extends EntityRequest
{
2016-05-01 14:04:55 +02:00
protected $entityType = ENTITY_VENDOR;
public function entity()
{
$vendor = parent::entity();
// eager load the contacts
if ($vendor && ! $vendor->relationLoaded('vendor_contacts')) {
$vendor->load('vendor_contacts');
2016-05-01 14:04:55 +02:00
}
return $vendor;
}
2017-01-30 17:05:31 +01:00
}