Search found 40 matches

by kartikbhat
12 May 2022, 13:42
Forum: Laravel package
Topic: [Solved]How to fetch total Basket amount on payment page
Replies: 2
Views: 579

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

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 :)
by kartikbhat
18 Apr 2022, 16:35
Forum: Laravel package
Topic: Show Basket Items Count on header
Replies: 3
Views: 746

Re: Show Basket Items Count on header

I already tried this way of approach; but the basket icon with count is in common blade file, where I can call that "basket/mini" to get count to make it available all the time, with all pages (I have custom pages developed with reference to Laravel approach as well); Tried calling this &q...
by kartikbhat
16 Apr 2022, 13:30
Forum: Laravel package
Topic: Show Basket Items Count on header
Replies: 3
Views: 746

Show Basket Items Count on header

In my Laravel application I am using a common base.blade.php file which is then extended by all other blade files; I have a basket icon present on header part (it is present in that common base.blade.php file) Now how can I show total number of items present in my basket as a badge of that basket ic...
by kartikbhat
12 Apr 2022, 10:52
Forum: Laravel package
Topic: How to fetch Product Related Reviews on Product Detail Page
Replies: 1
Views: 502

How to fetch Product Related Reviews on Product Detail Page

I need to display reviews added to a particular product;
there I need pagination as well to display limited number of review on a page load;
Suggest me a possible way to achieve this
TIA :)
by kartikbhat
08 Apr 2022, 14:39
Forum: Laravel package
Topic: Display Variables in blade files
Replies: 1
Views: 543

Display Variables in blade files

How can I display these fetched products data on .blade.php files ?

Code: Select all

$products = \Aimeos\MShop::create( $context, 'product' );

Suggest me how Can I loop it and fetch logo, supplier info from these....

TIA
by kartikbhat
08 Apr 2022, 08:00
Forum: Laravel package
Topic: Access Managers in Laravel Controller
Replies: 3
Views: 821

Re: Access Managers in Laravel Controller

How Can I fetch active siteid from session in Laravel Controller to utilize it to fetch other related data from database;
TIA
by kartikbhat
06 Apr 2022, 18:03
Forum: Laravel package
Topic: Access Managers in Laravel Controller
Replies: 3
Views: 821

Access Managers in Laravel Controller

I need to access those Managers which handles 'products' into my Custom Laravel Controller ; How can I fetch list of products from database ; $manager = \Aimeos\MShop::create( $this->getContext(), 'product' ); this chunk is not working inside of laravel controller; Help me access products list withi...
by kartikbhat
04 Apr 2022, 14:14
Forum: Laravel package
Topic: Indexes of page array from shop.php
Replies: 3
Views: 1457

Re: Indexes of page array from shop.php

If I want create more custom pages then? I will create a new index under shop.php under page 'index' then I will create respective folder under templates folder then am I able to call/fetch data from database at php files created src/Client/Html using Laravel syntax ? then how can load this custom p...
by kartikbhat
02 Apr 2022, 11:37
Forum: Laravel package
Topic: Indexes of page array from shop.php
Replies: 3
Views: 1457

Indexes of page array from shop.php

'page' => [ 'basket-index' => [ 'basket/bulk', 'catalog/tree', 'catalog/search', 'basket/standard', 'basket/related' ] ] part of config/shop.php file, what these 'basket/bulk' , 'catalog/tree' , 'catalog/search' , 'basket/standard' , 'basket/related' components indicates ? where to locate these thi...
by kartikbhat
01 Feb 2022, 07:16
Forum: Laravel package
Topic: Where to get Categories List from Databse
Replies: 1
Views: 616

Where to get Categories List from Databse

I need to display all the categories (specifically subcategories of HOME category) in one html page and need to create a hyperlink to each category, which redirects me to page where I can view products under that category; kindly let me know what flow that I need to follow to achieve this... Laravel...