[Solved]How to fetch total Basket amount on payment page

Help for integrating the Laravel package
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
kartikbhat
Posts: 40
Joined: 02 Dec 2021, 17:18

[Solved]How to fetch total Basket amount on payment page

Post by kartikbhat » 12 May 2022, 13:42

I need to display total amount of all products / basket value / order amount on payment page just above a form where we enter payment credentials; kindly help me get this digit on payment page.

TIA :)
Last edited by kartikbhat on 16 May 2022, 16:14, edited 1 time in total.

User avatar
aimeos
Administrator
Posts: 7895
Joined: 01 Jan 1970, 00:00

Re: How to fetch total Basket amount on payment page

Post by aimeos » 13 May 2022, 13:28

In the checkout templates, the basket is always available with "standardBasket" key, so you can get the price using:

Code: Select all

$this->standardBasket->getPrice()->getValue();
See: https://github.com/aimeos/ai-client-htm ... d.php#L219
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

kartikbhat
Posts: 40
Joined: 02 Dec 2021, 17:18

Re: How to fetch total Basket amount on payment page

Post by kartikbhat » 13 May 2022, 14:57

Yes; Its resolved; Thank you

Post Reply