How to integrate paytm payment gateway in website with laravel 6?

|
rebory 2019-12-31 06:53:22
laravel_discuss-22845.jpg
i want to sumof Price attribute help me how i can get
skys215 2019-12-31 07:01:08
Sum which column, and what’s your data
rebory 2019-12-31 07:13:00
data2->price
rebory 2019-12-31 07:14:09
laravel_discuss-22848.jpg
sky this is my data
skys215 2019-12-31 07:17:21
rebory 2019-12-31 07:14:09
sky this is my data

array_sum(array_column($data, ‘price’));

rebory 2019-12-31 07:23:55
skys215 2019-12-31 07:17:21
array_sum(array_column($data, ‘price’));

wait i can try

rebory 2019-12-31 07:26:16
skys215 2019-12-31 07:17:21
array_sum(array_column($data, ‘price’));

thank you very much for clear my concept

skys215 2019-12-31 07:33:47
rebory 2019-12-31 07:26:16
thank you very much for clear my concept

Yeah, the first thing is that php exists a function called array_sum which does what you want to do. and it requires an array
So the next step is to get or form an array of prices which match it requirements and what you want to sum
The array_column is the function to achieve that

rebory 2019-12-31 09:20:03
skys215 2019-12-31 07:33:47
Yeah, the first thing is that php exists a function called array_sum which does what you want to do. and it requires an array
So the next step is to get or form an array of prices which match it requirements and what you want to sum
The array_column is the function to achieve that

thanks you again for save my time and this useful information

skys215 2019-12-31 09:40:14
Not at all
ransikoo 2019-12-31 10:26:13
please send for me admin dashboard laravel
farshadfb 2019-12-31 11:12:06
Hi guys i want my users to verify thier phone number opun registeration now my question is that should i add a temp table for code and user_id and verify user from that table or add a field t o user table and read from there ?? which one is more optimized
esqui22 2019-12-31 15:32:35
farshadfb 2019-12-31 11:12:06
Hi guys i want my users to verify thier phone number opun registeration now my question is that should i add a temp table for code and user_id and verify user from that table or add a field t o user table and read from there ?? which one is more optimized

I think user table

Ftmbahari 2019-12-31 15:47:30
Hi, do you know what is the meaning of wildcard?
Thanks
mr_charlie93 2019-12-31 17:41:27
Hi everyone need help with paypal in laravel
2019-12-31 18:05:01
People
2019-12-31 18:05:06
laravel_discuss-22862.jpg
I wanted to verify by the id_classe_categoria if the register exists in the table to the relationship.

Is it possible?

DesolatorMagno 2019-12-31 20:19:29
Yes, read the documentation, there is a list of every rule.
dineshmali164 2019-12-31 20:46:03
Omidmm16 2019-12-28 23:05:01
I recommand using mall project in octobercms that based laravel

Hello
How to integrate paytm payment gateway in website with laravel 6??

Please suggest me

Thank in advance

aaravonly4you 2019-12-31 20:53:11
Tell me where ?
aaravonly4you 2019-12-31 20:54:48
Im asking where im wrong?
aaravonly4you 2019-12-31 21:04:29
Are you a beginner…
aaravonly4you 2019-12-31 21:04:47
Haven’t seen I’m using resources controller
aaravonly4you 2019-12-31 21:06:08
Okay see and then revert
Yannickshadownet 2019-12-31 21:17:30
Hi everybody. How can i access my first web page without /public in the url.somthing like 👉 localhost/hms
.i use laravel 6.
Thanks
AlaaDq 2019-12-31 21:19:31
Try asset()
Share Market 2019-12-31 21:21:22
Yannickshadownet 2019-12-31 21:17:30
Hi everybody. How can i access my first web page without /public in the url.somthing like 👉 localhost/hms
.i use laravel 6.
Thanks

RewriteEngine On RewriteRule ^(.*)$ public/$1 [L]

Share Market 2019-12-31 21:22:17
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]

Try this solution write in root . htaccess .

skys215 2019-12-31 22:04:28
Happy new year
Omidmm16 2019-12-31 23:07:38
dineshmali164 2019-12-31 20:46:03
Hello
How to integrate paytm payment gateway in website with laravel 6??

Please suggest me

Thank in advance

Hello, my friend
Unfortunately, I haven’t workex with paytm method, but I created custom pay gatway. You can do like me .
In your custom plugin or create a plugin for this . then
Create a class that extends PaymentProvider , write your code in methods, and in boot method of plugin class . register your gateway provider .
If you have any question , send me in my PV.

2019-12-31 23:49:48
AppServiceProvider.php file is auto deleting from a cloned Laravel application. How can I fix that?
2019-12-31 23:50:15
It’s deleting after each trying to log or register someone
Yannickshadownet 2019-12-31 23:55:19
Share Market 2019-12-31 21:22:17
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]

Try this solution write in root . htaccess .

I try it but it not work for me

mindwingx 2020-01-01 00:48:08
Hey guys
does anyone know how to fix “boolean given” error in laravel, while updating data? i had tested several ways by stackoverflow, but no one works.
2020-01-01 00:58:03
mindwingx 2020-01-01 00:48:08
Hey guys
does anyone know how to fix “boolean given” error in laravel, while updating data? i had tested several ways by stackoverflow, but no one works.

show the error 😉

Manoj Mehta 2020-01-01 15:07:02
laravel_discuss-22907.jpg

Manoj Mehta 2020-01-01 15:08:35
auth data show here and login done but after login, it redirects to dashboard and check admin middleware
Manoj Mehta 2020-01-01 15:08:46
laravel_discuss-22909.jpg

Manoj Mehta 2020-01-01 15:09:22
but in middle ware ‘Auth::guard($guard)->check()’ is null
Manoj Mehta 2020-01-01 15:10:02
I am updating my code from laravel 5.4->6.*
Manojkumar5408 2020-01-01 15:14:59
Hello everyone .
Manojkumar5408 2020-01-01 15:15:22
I need to deploy my laravel project from GitHub to heroku
Manojkumar5408 2020-01-01 15:15:34
How to do that ??
Anyone help me plz
Share Market 2020-01-01 15:37:05
Yannickshadownet 2019-12-31 23:55:19
I try it but it not work for me

laravel_discuss-22917.jpg

Share Market 2020-01-01 15:37:35
Replace your folder name with shopping.
Share Market 2020-01-01 15:38:39
This htaccess place in root folder of project…
Share Market 2020-01-01 15:40:17
It means place in html folder.
DisneybySherlock 2020-01-01 20:56:27
laravel_discuss-22931.jpg
I keep on getting this error and the ‘controllers’ file is there but it sais its not found … does any one know how to solve this problem ??? Ill be very thankful for your help
Mustafa Bharmal 2020-01-01 21:47:27
DisneybySherlock 2020-01-01 20:56:27
I keep on getting this error and the ‘controllers’ file is there but it sais its not found … does any one know how to solve this problem ??? Ill be very thankful for your help

Controller Not Found

Mustafa Bharmal 2020-01-01 21:48:06
DisneybySherlock 2020-01-01 20:56:27
I keep on getting this error and the ‘controllers’ file is there but it sais its not found … does any one know how to solve this problem ??? Ill be very thankful for your help

Controller.php Not Found Http Folder

|