laravel-payku.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | API data
  6. |--------------------------------------------------------------------------
  7. |
  8. | Copy the keys and place their values in your .env file
  9. | You can get it from https://app.payku.cl/usuarios/tokenintegracion
  10. |
  11. */
  12. 'base_url' => env('PAYKU_BASE_URL'),
  13. 'public_token' => env('PAYKU_PUBLIC_TOKEN'),
  14. 'private_token' => env('PAYKU_PRIVATE_TOKEN'),
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Routes
  18. |--------------------------------------------------------------------------
  19. |
  20. | You can change the "prefix" from the URL route, by default is: "payku"
  21. | So, the full "url" will be: https://yourdomain.com/payku
  22. |
  23. |
  24. */
  25. 'route_prefix' => 'payku',
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Finished Route name
  29. |--------------------------------------------------------------------------
  30. |
  31. | You can set a custom name for showing the final result of transaction
  32. |
  33. |
  34. */
  35. 'route_finish_name' => env('PAYKU_ROUTE_FINISH_NAME', 'payku.result'),
  36. ];