HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/vhost/disk-apps/comfama.sports-crowd.com/database/seeds/AddYappyPaymentGatewaySeeder.php
<?php

use App\GatewayPayment;
use Illuminate\Database\Seeder;

class AddYappyPaymentGatewaySeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        $obj = new GatewayPayment;
        $obj->name = 'Yappy';
        $obj->description = 'Yappy - Prod';
        $obj->user = '';
        $obj->pass = '';
        $obj->client_public = 'QkdfbTJyOU5Gb0c5UnA3WlJRMW0xMzguRFh1NnF5SzBuV1NmUmhwVTNMZE95TTREVTdDcUc2SHhQYXEyNWxydw==';
        $obj->client_secret = 'QkdfbTJyOU5Gb0c5UnA3WlJRMW0xMzguRFh1NnF5SzBuV1NmUmhwVTNMZE95TTREVTdDcUc2SHhQYXEyNWxydw==';
        $obj->api_key = '';
        $obj->api_login = '';
        $obj->merchant_id = 'b1a01602-cfe0-4e27-b28b-e6857b255f66';
        $obj->account_id = '';
        $obj->language = 'es';
        $obj->currency = 'USD';
        $obj->gw_url_prd = 'https://apipagosbg.bgeneral.cloud';
        $obj->gw_url_sandbox = 'https://apipagosbg.bgeneral.cloud';
        $obj->active = true;
        $obj->is_productive = true;
        $obj->page_user_payment = '';
        $obj->page_confirm_user = '';
        $obj->page_response_for_gateway = '';
        $obj->class = 'App\Http\Controllers\YappyController';
        $obj->save();
    }
}