<?php
use Illuminate\Database\Seeder;
class BankProofTypesTableSeeder extends Seeder
{
/**
* Auto generated seed file
*
* @return void
*/
public function run()
{
\DB::table('bank_proof_types')->delete();
\DB::table('bank_proof_types')->insert(array (
0 =>
array (
'id' => 1,
'bank_proof_type' => 'Bank',
),
1 =>
array (
'id' => 2,
'bank_proof_type' => 'Paypal',
),
));
}
}