Search found 34 matches

by bilginkilic
03 Aug 2020, 10:28
Forum: Laravel package
Topic: Review Frontend Query filter
Replies: 5
Views: 1723

Re: Review Frontend Query filter

Yes we can empower it together. Just tell us how can we work together. We are in rush to make a review module ready .
We only need information and examples for adding filters in JSON REST API. kindly asked
by bilginkilic
02 Aug 2020, 16:30
Forum: Laravel package
Topic: installing omnipay driver
Replies: 8
Views: 2994

Re: installing omnipay driver

Now getting this error: The capture parameter is required
any suggestion? I have added capture parameter but it did not worked also.
https://prnt.sc/tsqy9x
https://prnt.sc/tt0dkg
by bilginkilic
02 Aug 2020, 16:24
Forum: Laravel package
Topic: Review Frontend Query filter
Replies: 5
Views: 1723

Review Frontend Query filter

we developed a simple review plugin, so that we can filter with the product and user id as below in the admin section (Image-1) We want to do the same in the front-end. Filtering works with review ID in the front-end. (Image-2) How can we query the product_id and user_id filtering parameters from th...
by bilginkilic
02 Aug 2020, 16:16
Forum: Laravel package
Topic: installing omnipay driver
Replies: 8
Views: 2994

Re: installing omnipay driver

I have installed ai payments, omnipay, yandex.kassa driver; all successful but now I get this error; My configuration is like this: When I shop I get this error: Class '\Omnipay\Yandex.Kassa\Gateway' not found how can I fix it? https://prnt.sc/tsqsvr https://prnt.sc/tsqt7g my composer json "req...
by bilginkilic
02 Aug 2020, 15:58
Forum: Laravel package
Topic: upgraded aimeos 2019.10 to 2020.07
Replies: 2
Views: 29910

Re: upgraded aimeos 2019.10 to 2020.07

I tried again and the error disappeared thank you
by bilginkilic
31 Jul 2020, 19:45
Forum: Laravel package
Topic: upgraded aimeos 2019.10 to 2020.07
Replies: 2
Views: 29910

upgraded aimeos 2019.10 to 2020.07

I got this error: how to fix? Aimeos\MW\DB\Exception SQLSTATE[42S22]: Column not found: 1054 Unknown column 'mlocsi.siteid' in 'field list': SELECT mlocsi."id" AS "locale.site.id", mlocsi."siteid" AS "locale.site.siteid", mlocsi."code" AS "local...
by bilginkilic
30 Jul 2020, 07:28
Forum: Laravel package
Topic: installing omnipay driver
Replies: 8
Views: 2994

Re: installing omnipay driver

installed ai-payments

and then
composer require league/omnipay:^3 hiqdev/omnipay-yandex-kassa

but when I go to back end and try to add service, payment, the provider of yandex kassa do not appear, what else should we do to see it?

now only options are directdebit, paypalexpress, postpay and prepay
by bilginkilic
28 Jul 2020, 06:24
Forum: Laravel package
Topic: installing omnipay driver
Replies: 8
Views: 2994

installing omnipay driver

I have installed aimeos laravel aimeos ai-payment extension and it is said that I need to install omnipay driver. https://aimeos.org/docs/User_Manual/Administration_Interface/Service_list#Omnipay If you use composer, you have to add the Omnipay payment driver you want to use to your composer.json an...
by bilginkilic
21 Jul 2020, 08:52
Forum: Laravel package
Topic: cart for home page of laravel (custom design)
Replies: 1
Views: 805

cart for home page of laravel (custom design)

How can we integrate cart block in custom page? ( our very new designed home page) Is cart a component? please suggest
by bilginkilic
21 Jul 2020, 08:26
Forum: Laravel package
Topic: Querying data - top 5 products
Replies: 1
Views: 878

Querying data - top 5 products

$items = Product::uses(['text', 'media', 'price','name']) ->category(1) ->sort('name')->slice(0, 48)->search(); how to put site_id condition an extra filter like product limitation, etc in this query? major point is.. how to fetch limited product.. Like i want to list only 5 items. ps: current query...