insert([ 'channel_no' => 8, 'code' => 'CAS', 'description' => 'Cash' ]); DB::table('payment_channels')->insert([ 'channel_no' => 5, 'code' => 'CAR', 'description' => 'Card' ]); DB::table('payment_channels')->insert([ 'channel_no' => 9, 'code' => 'OBC', 'description' => 'Own Bank Cheque' ]); DB::table('payment_channels')->insert([ 'channel_no' => 10, 'code' => 'TBC', 'description' => 'Other Bank Cheque' ]); DB::table('payment_channels')->insert([ 'channel_no' => 11, 'code' => 'INT', 'description' => 'Internal Transfer' ]); DB::table('payment_channels')->insert([ 'channel_no' => 3, 'code' => 'MOB', 'description' => 'Mobile' ]); DB::table('payment_channels')->insert([ 'channel_no' => 12, 'code' => 'FOT', 'description' => 'Foreign Transfer' ]); DB::table('payment_channels')->insert([ 'channel_no' => 2, 'code' => 'INB', 'description' => 'Internet Banking' ]); DB::table('payment_channels')->insert([ 'channel_no' => 4, 'code' => 'POS', 'description' => 'POS Terminal' ]); DB::table('payment_channels')->insert([ 'channel_no' => 1, 'code' => 'BTL', 'description' => 'Bank Teller' ]); DB::table('payment_channels')->insert([ 'channel_no' => 6, 'code' => 'VMP', 'description' => 'Vendor/Merchant Web Portal' ]); DB::table('payment_channels')->insert([ 'channel_no' => 7, 'code' => 'OPP', 'description' => 'Other – Party Payment Platform' ]); } }