/home/techb158/ileadtechnology.com/config
NameSizeModeActions
laravolt/-0755rm
app.php170370644editdlrm
auth.php32540644editdlrm
backup.php78550644editdlrm
broadcasting.php16040644editdlrm
cache.php26870644editdlrm
cookie-consent.php4300644editdlrm
cors.php15910644editdlrm
database.php46440644editdlrm
easynav.php6700644editdlrm
filesystems.php21330644editdlrm
hashing.php15710644editdlrm
image-optimizer.php23100644editdlrm
laraskrill.php6000644editdlrm
laravel-share.php15190644editdlrm
logging.php26570644editdlrm
mail.php46890644editdlrm
paypal.php3670644editdlrm
paystack.php7260644editdlrm
payu.php30510644editdlrm
pdf.php11390644editdlrm
query-builder.php6780644editdlrm
queue.php26360644editdlrm
rave.php12710644editdlrm
seotools.php23230644editdlrm
services.php31870644editdlrm
session.php69310644editdlrm
sitemap.php15500644editdlrm
sslcommerz.php10920644editdlrm
sweetalert.php59270644editdlrm
translatable.php1520644editdlrm
view.php10530644editdlrm
vimeo.php20030644editdlrm
youtube.php4360644editdlrm
Edit: /home/techb158/ileadtechnology.com/config/payu.php (3051B)
env('PAYU_METHOD'), /* |-------------------------------------------------------------------------- | Default Account to use |-------------------------------------------------------------------------- | | The account to be used for Payment | */ 'default' => env('PAYU_DEFAULT'), /* |-------------------------------------------------------------------------- | All Accounts array |-------------------------------------------------------------------------- | | All the different accounts with its names | */ 'accounts' => [ /* |-------------------------------------------------------------------------- | Account Credentials |-------------------------------------------------------------------------- | | The account name and credentials which are found in the PayuBiz or | PayuMoney Console. | | key => (string) Merchant Key. | salt => (string) Merchant Salt. | money => (boolean) Is it a payumoney account? | auth => (string) Authorization Token if it is a payumoney account. | */ 'payubiz' => [ 'key' => env('PAYU_MERCHANT_KEY'), 'salt' => env('PAYU_MERCHANT_SALT'), 'money' => env('PAYU_MONEY_TRUE'), 'auth' => env('PAYU_AUTH_HEADER') ], 'payumoney' => [ 'key' => env('PAYU_MERCHANT_KEY'), 'salt' => env('PAYU_MERCHANT_SALT'), 'money' => env('PAYU_MONEY_TRUE'), 'auth' => env('PAYU_AUTH_HEADER') ], ], /* |-------------------------------------------------------------------------- | Payment Store Driver |-------------------------------------------------------------------------- | | This is the config for storing the payment info. I recommend to use | database driver for storing then use it for your own use. | Options : "database", "session". | Note: If you use session driver make sure you are using secure = true | in config/session.php | */ 'driver' => 'session', /* |-------------------------------------------------------------------------- | Payu Payment Table |-------------------------------------------------------------------------- | | This is table that will be used for storing the payment information. | Run: php artisan vendor:publish to get the table in the migrations | directory. If you did change the table name then specify here. | */ 'table' => 'payu_payments', ];