mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 01:27:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			371 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			371 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Ninja\Intents\WebApp;
 | |
| 
 | |
| use App\Ninja\Intents\BaseIntent;
 | |
| 
 | |
| class CreateVendorIntent extends BaseIntent
 | |
| {
 | |
|     public function process()
 | |
|     {
 | |
|         $url = '/vendors/create';
 | |
| 
 | |
|         //$url = '/invoices/create/' . $clientPublicId . '?';
 | |
|         //$url .= $this->requestFieldsAsString(Invoice::$requestFields);
 | |
| 
 | |
|         return redirect($url);
 | |
|     }
 | |
| }
 |