public function run()
 {
     // Uncomment the below to wipe the table clean before populating
     DB::table('order_items')->delete();
     for ($i = 0; $i < 300; $i++) {
         $globex = App\Globex::find(rand(1, 200));
         App\OrderItem::create(['order_id' => rand(1, 100), 'product_id' => $globex->product->id, 'price' => $globex->product->price]);
     }
 }