mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-01 20:07:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			204 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			204 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use Faker\Generator as Faker;
 | |
| use Illuminate\Support\Str;
 | |
| 
 | |
| $factory->define(App\Models\InvoiceInvitation::class, function (Faker $faker) {
 | |
|     return [
 | |
|         'key' => Str::random(40),
 | |
|     ];
 | |
| });
 |