← prev | next →
rachitbucha 2019-05-06 00:02:33
rachitbucha 2019-05-06 00:02:44
plz help
ldefra 2019-05-06 13:16:10
Hi guys i’ve a question on validation rules, i needed validate guests.*.name => required_if:guests.index.rule_id,1
How do i resolve to link “index”?
ldefra 2019-05-06 13:18:21
I have to write a custom validation?
ransikoo 2019-05-06 14:02:21
how to create advance serach with laravel
StanleyMasinde 2019-05-06 14:04:39
SkipperStrange 2019-05-05 18:23:06
Load Jquery before the plugin…
skys215 2019-05-06 14:10:42
ldefra 2019-05-06 13:16:10
Hi guys i’ve a question on validation rules, i needed validate guests.*.name => required_if:guests.index.rule_id,1
How do i resolve to link “index”?
Try use * also
skys215 2019-05-06 14:10:53
or ignore the index
skys215 2019-05-06 14:11:16
ransikoo 2019-05-06 14:02:21
how to create advance serach with laravel
What kind of advance search?
ransikoo 2019-05-06 14:16:14
skys215 2019-05-06 14:11:16
What kind of advance search?
search in product table with multi option sampel name , price,avalible field
skys215 2019-05-06 14:17:29
ransikoo 2019-05-06 14:16:14
search in product table with multi option sampel name , price,avalible field
just do it normally
GauravGohil 2019-05-06 14:19:42
How to make email builder using laravel any resources??
SkipperStrange 2019-05-06 14:33:09
skys215 2019-05-06 14:10:42
Try use * also
I already tried that
SkipperStrange 2019-05-06 14:33:29
It seems the @stack method may work
skys215 2019-05-06 14:33:54
GauravGohil 2019-05-06 14:19:42
How to make email builder using laravel any resources??
Never used email builder before, sry
Abhinav Raj 2019-05-06 18:24:59
Hi,
How to save associated data in laravel. For example if i have category table and item table
And category has many items.
So I want to save category amd items in one go.
I have a relationship category hasMany Items
Can anyone help me
WellyRosadi 2019-05-06 18:55:01
May you can find in :
https://laravel.com/docs/5.8/eloquent-relationships#inserting-and-updating-related-models
Laravel – The PHP Framework For Web Artisans –
LaravelLaravel is a PHP web application framework with expressive, elegant syntax. We’ve already laid the foundation — freeing you to create without sweating the small things.
Abhinav Raj 2019-05-06 19:06:29
Ok but I have to create post as well with comments in the given url
skys215 2019-05-06 19:27:03
I think it’s the same thing
2019-05-07 07:11:47
Hi everyone, could you please help me
2019-05-07 07:16:18
2019-05-07 07:11:47
Hi everyone, could you please help me
it has been solved!
2019-05-07 07:18:56
any one with seo experience?
laraman_support 2019-05-07 08:31:48
10 ویژگی مهم فریمورک لاراول
📝 نویسنده: امید کیانی
https://laraman.ir/blog/10-features-that-kake-PHP-laravel-framework-a-winning-platform
@laraman
Satish Tigga 2019-05-07 08:42:37
How can I pass database value to JavaScript function
2019-05-07 08:45:09
Satish Tigga 2019-05-07 08:42:37
How can I pass database value to JavaScript function
ajax
2019-05-07 08:45:37
Satish Tigga 2019-05-07 08:42:37
How can I pass database value to JavaScript function
if it’s static, then use normal blade
Satish Tigga 2019-05-07 08:45:39
Can you elaborate please
2019-05-07 08:46:03
var a = {{$my_db}}
Satish Tigga 2019-05-07 08:46:59
Satish Tigga 2019-05-07 08:47:51
In button I am calling showselected plan which is a Java script function and I want to send the database values as parameters to that JavaScript function
2019-05-07 08:48:49
Satish Tigga 2019-05-07 08:46:59
seems cool, but always do a simple test, then apply it on ur real code
Satish Tigga 2019-05-07 08:49:06
Test failed bro
2019-05-07 08:49:29
Satish Tigga 2019-05-07 08:49:06
Test failed bro
send me screen
2019-05-07 08:49:50
and why do u add spaces between ur variable and “->” sign
Satish Tigga 2019-05-07 08:50:13
Space creates trouble ??
2019-05-07 08:50:38
Satish Tigga 2019-05-07 08:50:13
Space creates trouble ??
better not to use it
Satish Tigga 2019-05-07 08:52:16
Kk when i am clicking select plan button then nothing happens because the JavaScript function is not called and maybe the method I am send parameters seems cool and fine but maybe it’s not the right way of sending
Satish Tigga 2019-05-07 08:52:19
Parameters
2019-05-07 08:52:26
Satish Tigga 2019-05-07 08:52:16
Kk when i am clicking select plan button then nothing happens because the JavaScript function is not called and maybe the method I am send parameters seems cool and fine but maybe it’s not the right way of sending
do it as follow, I may have made a mistake
var test = “{{{$test}}}”;
Satish Tigga 2019-05-07 08:53:54
Inside html if I create car test=”{{{$test}}}”; then it will display as it is but no variable will be created
2019-05-07 08:53:56
Satish Tigga 2019-05-07 08:52:16
Kk when i am clicking select plan button then nothing happens because the JavaScript function is not called and maybe the method I am send parameters seems cool and fine but maybe it’s not the right way of sending
dude I just said that before, first make a simple console.log to check if variables are being sent from database to ur js code, then apply the coding on ur btn
2019-05-07 08:54:11
2019-05-07 08:52:26
do it as follow, I may have made a mistake
var test = “{{{$test}}}”;
this is js, BTW
2019-05-07 08:54:55
this is another way
<script type=”text/javascript”>
var M_TEST = “<?php echo $variable ?>”;
</script>
2019-05-07 08:55:11
this was best of my knowledge, wish u best 😉
Satish Tigga 2019-05-07 08:55:35
Kk I will do the same and tell you if it works or not
Satish Tigga 2019-05-07 08:58:21
Bro suppose I want to store $broadband->gst into a variable and then pass that variable to JavaScript function then does it will work…
2019-05-07 09:00:35
Satish Tigga 2019-05-07 08:58:21
Bro suppose I want to store $broadband->gst into a variable and then pass that variable to JavaScript function then does it will work…
I sincerely have no idea, just test it 😀
Satish Tigga 2019-05-07 09:00:46
Kk
← prev | next →