mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-29 20:51:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			316 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			316 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /** @var \Illuminate\Database\Eloquent\Factory $factory */
 | |
| 
 | |
| use Laraspace\InvoiceTemplate;
 | |
| use Faker\Generator as Faker;
 | |
| 
 | |
| $factory->define(InvoiceTemplate::class, function (Faker $faker) {
 | |
|     return [
 | |
|         'path' => $faker->word,
 | |
|         'view' => $faker->word,
 | |
|         'name' => $faker->word,
 | |
|     ];
 | |
| });
 |