mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 03:47:36 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			409 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			409 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php namespace App\Http\Requests;
 | 
						|
 | 
						|
class VendorRequest extends EntityRequest {
 | 
						|
 | 
						|
    protected $entityType = ENTITY_VENDOR;
 | 
						|
 | 
						|
    public function entity()
 | 
						|
    {
 | 
						|
        $vendor = parent::entity();
 | 
						|
        
 | 
						|
        // eager load the contacts
 | 
						|
        if ($vendor && ! $vendor->relationLoaded('vendor_contacts')) {
 | 
						|
            $vendor->load('vendor_contacts');
 | 
						|
        }
 | 
						|
         
 | 
						|
        return $vendor;
 | 
						|
    }
 | 
						|
 | 
						|
} |