mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-11-03 22:13:18 -05: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,
 | 
						|
    ];
 | 
						|
});
 |