| 123456789101112131415161718192021222324 |
- <?php
- use Illuminate\Database\Seeder;
- class WaybillPriceModelsSeeder extends Seeder
- {
- /**
- * Run the database seeds.
- *
- * @return void
- */
- public function run()
- {
- \App\WaybillPriceModel::create([
- 'carrier_id'=>1,
- 'province_id'=>1,
- 'city_id'=>1,
- 'unit_id'=>1,
- 'section'=>'0-5000',
- 'unit_price'=>2.3,
- 'initial_weight'=>50
- ]);
- }
- }
|