Search found 15 matches

by Dhara1510
20 May 2019, 05:59
Forum: Laravel package
Topic: Make login require for checkout the order
Replies: 2
Views: 1497

Re: Make login require for checkout the order

Thanks. I have overridden routes and applied "auth" middleware to checkout controller and it works :)
by Dhara1510
17 May 2019, 13:23
Forum: Laravel package
Topic: Make login require for checkout the order
Replies: 2
Views: 1497

Make login require for checkout the order

I want a user to login before checkout the order. Current scenario: User can add product to cart and do checkout without login Required scenario: User can add product to cart. User has to login when he want to do checkout. When user click on it should redirect user to login page. How can it be done?...
by Dhara1510
09 May 2019, 10:02
Forum: Laravel package
Topic: How to get orders with their products
Replies: 13
Views: 5013

Re: How to get orders with their products

Thank you sir. I will apply it and let you know if i need your help
by Dhara1510
09 May 2019, 09:49
Forum: Laravel package
Topic: How to get orders with their products
Replies: 13
Views: 5013

Re: How to get orders with their products

I am using latest "dev-master" version. Can you please guide me how to get latest created order for user?
by Dhara1510
09 May 2019, 09:44
Forum: Laravel package
Topic: How to get orders with their products
Replies: 13
Views: 5013

Re: How to get orders with their products

I am using latest "dev-master" version. Can you please guide me how to get latest created order for user?
by Dhara1510
09 May 2019, 07:23
Forum: Laravel package
Topic: How to get orders with their products
Replies: 13
Views: 5013

Re: How to get orders with their products

Hello sir, This post helps me to get order products. $context = App::make('\Aimeos\Shop\Base\Context')->get(); $baseManager = \Aimeos\MShop::create($context, 'order/base'); $search = $baseManager->createSearch(); $items = $baseManager->searchItems($search, ['order/base/product']); $basket = reset($i...
by Dhara1510
09 May 2019, 05:38
Forum: Laravel package
Topic: How to get product attribute properties from order
Replies: 1
Views: 1190

How to get product attribute properties from order

Hello, I have overridden the confirmAction and added my code. public function confirmAction() { foreach (app('config')->get('shop.page.checkout-confirm') as $name) { $params[ 'aiheader' ][ $name ] = Shop::get($name)->getHeader(); $params[ 'aibody' ][ $name ] = Shop::get($name)->getBody(); } $context...
by Dhara1510
03 May 2019, 10:24
Forum: Laravel package
Topic: Enable frontend login for customers
Replies: 1
Views: 946

Re: Enable frontend login for customers

I Got it. it takes default auth login for frontend users
by Dhara1510
03 May 2019, 10:06
Forum: Laravel package
Topic: Enable frontend login for customers
Replies: 1
Views: 946

Enable frontend login for customers

Hello aimeos,

Thanks for your kind support for the issues I am facing.

I want the user to login first then place the order. Currently, the user can place an order as a guest user and also can create his account at the time of checkout.

How can I enable frontend login for user?
by Dhara1510
01 May 2019, 10:40
Forum: Laravel package
Topic: How to extend Controller Base file and add custom function
Replies: 3
Views: 1852

Re: How to extend Controller Base file and add custom functi

Hello Aimeos, Thanks for your kind reply. I have searched in your package and found that on product purchase "createSubscriptions()" called which is located "ext/ai-controller-frontend/controller/frontend/src/Controller/Frontend/Basket/Base.php" so If I want to extend this file t...