Filippo Bertilotti
5 days ago 06f7b6188fe152cd561e60ff1abf2bac56773347
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
 
namespace Database\Seeders;
 
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
 
class ProductsSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        DB::table('fakesso_products')->insert([
            'ProductId' => '2583',
            'Description' => '',
            'Name' => 'TM9 Servizio Dual Ricaricabile',
            'OMProductId' => '2156',
            'OMsource' => 'CCBS',
            'isService' => 1,
        ]);
        DB::table('fakesso_products')->insert([
            'ProductId' => '2583',
            'Description' => '',
            'Name' => 'TM9 Servizio Dual Ricaricabile',
            'OMProductId' => '2156',
            'OMsource' => 'CCBS',
            'isService' => 0,
        ]);
    }
}