mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 02:07:30 -04:00 
			
		
		
		
	* Fixes for MakesHash trait * Client List DataTables * Data table dependencies * Confirmation URLs * Wire up firing events for notification emails
		
			
				
	
	
		
			19 lines
		
	
	
		
			537 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			537 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use Faker\Generator as Faker;
 | |
| 
 | |
| $factory->define(App\Models\ClientLocation::class, function (Faker $faker) {
 | |
|     return [
 | |
|         'address1' => $faker->buildingNumber,
 | |
|         'address2' => $faker->streetAddress,
 | |
|         'city' => $faker->city,
 | |
|         'state' => $faker->state,
 | |
|         'postal_code' => $faker->postcode,
 | |
|         'country_id' => 4,
 | |
|         'latitude' => $faker->latitude,
 | |
|         'longitude' => $faker->longitude,
 | |
|         'description' => $faker->paragraph,
 | |
|         'private_notes' => $faker->paragraph
 | |
|     ];
 | |
| });
 |