UnknownSec Bypass
403
:
/
mnt
/
lmsestudio-instance-vol002
/
lms_d5be14f5abaa
/
database
/
seeds
/ [
drwxr-xr-x
]
Menu
Upload
Mass depes
Mass delete
Terminal
Info server
About
name :
GatewaySeeder.php
<?php use Illuminate\Database\Seeder; class GatewaySeeder extends Seeder { public function run() { DB::statement('SET FOREIGN_KEY_CHECKS=0;'); DB::table('gateways')->truncate(); DB::statement('SET FOREIGN_KEY_CHECKS=1;'); $data = [ 'title' => 'PagarMe', 'lang_title' => 'site_cart.buyPagarme', 'route' => 'checkout.pagarme' ]; \EstudioLMS\Models\Config\Gateway::create($data); $data = [ 'title' => 'Paypal', 'lang_title' => 'site_cart.buyPaypal', 'route' => 'checkout.paypal' ]; \EstudioLMS\Models\Config\Gateway::create($data); $data = [ 'title' => 'Pagseguro', 'lang_title' => 'site_cart.buyPagseguro', 'route' => 'checkout.pagseguro' ]; \EstudioLMS\Models\Config\Gateway::create($data); $data = [ 'title' => 'Boleto', 'lang_title' => 'site_cart.buyBoleto', 'route' => 'checkout.boleto' ]; \EstudioLMS\Models\Config\Gateway::create($data); } }
Copyright © 2026 - UnknownSec