File: /home/imensosw/.trash/database/seeds/PhotoProofTypesTableSeeder.php
<?php
use Illuminate\Database\Seeder;
class PhotoProofTypesTableSeeder extends Seeder
{
/**
* Auto generated seed file
*
* @return void
*/
public function run()
{
\DB::table('photo_proof_types')->delete();
\DB::table('photo_proof_types')->insert(array (
0 =>
array (
'id' => 1,
'photo_proof_type' => 'PAN Card',
),
1 =>
array (
'id' => 2,
'photo_proof_type' => 'Passport',
),
2 =>
array (
'id' => 100,
'photo_proof_type' => 'Other',
),
));
}
}