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