mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 01:17:30 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			395 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			395 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;
 | 
						|
    }
 | 
						|
}
 |