You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					34 lines
				
				877 B
			
		
		
			
		
	
	
					34 lines
				
				877 B
			| 
								 
											2 years ago
										 
									 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace Database\Factories;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								use App\Models\Order;
							 | 
						||
| 
								 | 
							
								use Illuminate\Database\Eloquent\Factories\Factory;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class OrderFactory extends Factory
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    /**
							 | 
						||
| 
								 | 
							
								     * The name of the factory's corresponding model.
							 | 
						||
| 
								 | 
							
								     *
							 | 
						||
| 
								 | 
							
								     * @var string
							 | 
						||
| 
								 | 
							
								     */
							 | 
						||
| 
								 | 
							
								    protected $model = Order::class;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    /**
							 | 
						||
| 
								 | 
							
								     * Define the model's default state.
							 | 
						||
| 
								 | 
							
								     *
							 | 
						||
| 
								 | 
							
								     * @return array
							 | 
						||
| 
								 | 
							
								     */
							 | 
						||
| 
								 | 
							
								    public function definition()
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        return [
							 | 
						||
| 
								 | 
							
								            'user_id' => $this->faker->numberBetween(1,50),
							 | 
						||
| 
								 | 
							
								            'zone_id' => $this->faker->numberBetween(1,6),
							 | 
						||
| 
								 | 
							
								            'order_amount' => $this->faker->randomNumber(3),
							 | 
						||
| 
								 | 
							
								            'order_status'=>$this->faker->randomElement(['pending','delivered','failed','confirmed','processing']),
							 | 
						||
| 
								 | 
							
								            'restaurant_id'=>$this->faker->numberBetween(1,50),
							 | 
						||
| 
								 | 
							
								            'restaurant_discount_amount'=>$this->faker->randomNumber(3),
							 | 
						||
| 
								 | 
							
								        ];
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |