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