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