first commit
This commit is contained in:
60
database/seeds/PropertyAdditionalInfoKeyLocaleSeeder.php
Normal file
60
database/seeds/PropertyAdditionalInfoKeyLocaleSeeder.php
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class PropertyAdditionalInfoKeyLocaleSeeder extends Seeder
|
||||
{
|
||||
|
||||
/**
|
||||
* Auto generated seed file
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function run()
|
||||
{
|
||||
|
||||
|
||||
\DB::table('property_additional_info_key_locale')->delete();
|
||||
|
||||
\DB::table('property_additional_info_key_locale')->insert(array (
|
||||
0 =>
|
||||
array (
|
||||
'id' => 1,
|
||||
'additional_info_key_id' => 1,
|
||||
'additional_info_key' => 'Building Year',
|
||||
'locale' => 'en',
|
||||
'status' => 1,
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1,
|
||||
'created_at' => 1,
|
||||
'updated_at' => 1,
|
||||
),
|
||||
1 =>
|
||||
array (
|
||||
'id' => 2,
|
||||
'additional_info_key_id' => 2,
|
||||
'additional_info_key' => 'Restoration Year',
|
||||
'locale' => 'en',
|
||||
'status' => 1,
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1,
|
||||
'created_at' => 1,
|
||||
'updated_at' => 1,
|
||||
),
|
||||
2 =>
|
||||
array (
|
||||
'id' => 3,
|
||||
'additional_info_key_id' => 3,
|
||||
'additional_info_key' => 'Room Count',
|
||||
'locale' => 'en',
|
||||
'status' => 1,
|
||||
'created_by' => 1,
|
||||
'updated_by' => 1,
|
||||
'created_at' => 1,
|
||||
'updated_at' => 1,
|
||||
),
|
||||
));
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user