replace offline to oflinepayment payment gateways

This commit is contained in:
cuneytsenturk
2017-09-18 19:57:48 +03:00
parent cb179c27eb
commit 6911c0bb42
37 changed files with 272 additions and 167 deletions

View File

@ -0,0 +1,45 @@
<?php
namespace Modules\OfflinePayment\Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
use Setting;
class OfflinePaymentDatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Model::unguard();
$this->create();
Model::reguard();
}
private function create()
{
$methods = array();
$methods[] = array(
'code' => 'offlinepayment.cash.1',
'name' => 'Cash',
'order' => '1',
'description' => null,
);
$methods[] = array(
'code' => 'offlinepayment.bank_transfer.2',
'name' => 'Bank Transfer',
'order' => '2',
'description' => null,
);
Setting::set('offlinepayment.methods', json_encode($methods));
}
}