2017-01-30 20:40:43 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests;
|
2016-04-28 14:16:33 +02:00
|
|
|
|
2017-01-30 17:05:31 +01: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
|
2016-05-05 09:15:51 +02:00
|
|
|
if ($client && ! $client->relationLoaded('contacts')) {
|
2016-05-01 13:31:10 +02:00
|
|
|
$client->load('contacts');
|
|
|
|
}
|
|
|
|
|
|
|
|
return $client;
|
2016-04-28 14:23:09 +02:00
|
|
|
}
|
2017-01-30 17:05:31 +01:00
|
|
|
}
|