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