1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Http/Requests/ClientRequest.php

18 lines
383 B
PHP
Raw Normal View History

2016-04-28 14:16:33 +02:00
<?php namespace App\Http\Requests;
2016-05-01 13:31:10 +02:00
class ClientRequest extends EntityRequest {
2016-04-28 14:16:33 +02:00
protected $entityType = ENTITY_CLIENT;
2016-04-28 14:23:09 +02:00
public function entity()
{
2016-05-01 13:31:10 +02:00
$client = parent::entity();
// eager load the contacts
if ($client && ! count($client->contacts)) {
$client->load('contacts');
}
return $client;
2016-04-28 14:23:09 +02:00
}
2016-05-01 13:31:10 +02:00
}