Any way available in the laravel?

|
skys215 2020-04-28 12:44:22
Yeah, make it inline-block
rebory 2020-04-28 13:46:10
ii want to now how to get values from mysql tables smaller to larger
rebory 2020-04-28 13:46:37
laravel_discuss-35140.jpg
this is my table data Category_name
rebory 2020-04-28 13:47:38
i want this in dropdown like:
4×6
5×7
6×12
11×7
rebory 2020-04-28 13:48:05
any way available in the laravel?
ayberk 2020-04-28 13:52:35
You can try orderby but i dont think ordered you expected. If your category records are not too long, you can add “order” column and you can order how do you want
rebory 2020-04-28 13:53:33
ayberk 2020-04-28 13:52:35
You can try orderby but i dont think ordered you expected. If your category records are not too long, you can add “order” column and you can order how do you want

their is 400-500 records

rebory 2020-04-28 14:14:20
sort() method is work for me
rebory 2020-04-28 14:15:06
public function categoryOptionSize()
{
$data = [ null => ‘—select—’];
$result = $this->where(‘active’,’Y’)->where(‘size’ ,’Y’)->pluck(‘category_name’, ‘category_name’)->sort();
if($result->count() > 0) {
$data = $data + $result->toArray();
}
return $data;
}
Gabby_Json 2020-04-28 15:18:14
Have you guys check out the new laravel vapor
Gabby_Json 2020-04-28 15:19:10
https://vapor.laravel.com/
dhenish 2020-04-28 15:38:42
How to forgotpassword in larvel anyone know plz send me code
2020-04-28 16:07:39
Guys how to make laravel multilingue app
2020-04-28 16:08:48
I mean , I want my project to have several languages possibilities when using the app
2020-04-28 16:09:16
So we could jump from English to French etc.
2020-04-28 16:16:09
Grand merci, c’est bien intéressant cette vidéo
skys215 2020-04-28 16:41:53
2020-04-28 16:08:48
I mean , I want my project to have several languages possibilities when using the app

Doc localization

2020-04-28 16:42:20
skys215 2020-04-28 16:41:53
Doc localization

Ok thanks

Marvixino 2020-04-28 17:45:44
Guys, did you use AWS efs? How much do you pay for it, I have 100gb over nfs.
jzshdev 2020-04-28 18:41:25
laravel_discuss-35160.jpg
Good evening!
Help can not solve this problem!
DesolatorMagno 2020-04-28 18:45:35
are you sure that you are passing the right response?
DesolatorMagno 2020-04-28 18:47:33
laravel_discuss-35162.jpg

TheGuyi 2020-04-28 18:48:46
I have a question hope your all hope your fine and safe? Between Ubuntu and Kali which one is best for web development?
2020-04-28 18:56:05
Anyone having experience in developing mlm using PHP
hiteshv253 2020-04-28 19:00:09
TheGuyi 2020-04-28 18:48:46
I have a question hope your all hope your fine and safe? Between Ubuntu and Kali which one is best for web development?

ubuntu is best for web development .

hiteshv253 2020-04-28 19:00:28
2020-04-28 18:56:05
Anyone having experience in developing mlm using PHP

yes

2020-04-28 19:02:39
hiteshv253 2020-04-28 19:00:09
ubuntu is best for web development .

Hi, please direct message me.

Und3rscore 2020-04-28 21:25:30
Hi guys, can I ask a question here please?
hiteshv253 2020-04-28 21:39:23
Und3rscore 2020-04-28 21:25:30
Hi guys, can I ask a question here please?

yes

Gregorio Nava 2020-04-28 21:39:49
dividendos
Und3rscore 2020-04-28 21:43:49
hiteshv253 2020-04-28 21:39:23
yes

So, basically I create my first project with laravel with virtual box on Mac Os. The first project at the url: 127.0.0.1:8000 was working fine, the default by ssh. But now I create the second project and ssh say to me “the address 127.0.0.1:8000 already used. Start ssh to 127.0.0.1:8001.. but if I search this url, chrome say to me “Connection refused”.. How I need to do?

Really sorry for my english, I’m still learning it

hiteshv253 2020-04-28 21:45:55
Und3rscore 2020-04-28 21:43:49
So, basically I create my first project with laravel with virtual box on Mac Os. The first project at the url: 127.0.0.1:8000 was working fine, the default by ssh. But now I create the second project and ssh say to me “the address 127.0.0.1:8000 already used. Start ssh to 127.0.0.1:8001.. but if I search this url, chrome say to me “Connection refused”.. How I need to do?

Really sorry for my english, I’m still learning it

you can ues different port using cmd.

Und3rscore 2020-04-28 21:48:41
If I use: php artisan serve –port=8081 starting. But when I put the url on chrome:
Impossible to reach the site
ERR_CONNECTION_REFUSED

Verify your connection or proxy/firewall

hiteshv253 2020-04-28 21:49:57
what the error code .
hiteshv253 2020-04-28 21:50:15
in network console
Und3rscore 2020-04-28 21:52:02
laravel_discuss-35182.jpg
This one?
hiteshv253 2020-04-28 21:53:18
yes
Und3rscore 2020-04-28 21:54:24
hiteshv253 2020-04-28 21:53:18
yes

Can I write to you in private?

hiteshv253 2020-04-28 21:56:57
clean your dunp files, clear catch and update your composer. may be is is solved your problem
hiteshv253 2020-04-28 21:57:55
Und3rscore 2020-04-28 21:54:24
Can I write to you in private?

sure

StupidTwat 2020-04-29 00:23:09
I want to add I “where” inside an eloquent query but only if variable is there (isset?) Anyone we explain or give example?

At the moment I just use lots of if statements . Thank you

DesolatorMagno 2020-04-29 00:36:38
There is a specific function for that in the query, I think is them.
DesolatorMagno 2020-04-29 00:37:33
laravel_discuss-35193.jpg
#Laravel tip of the day:

if you are building Eloquent query, depending on some search parameters which may exist or not, you can use $query->when() method and chain it into one sentence. Look at code snippets, which way do you prefer? IF or WHEN?

DesolatorMagno 2020-04-29 00:37:34
laravel_discuss-35194.jpg

DesolatorMagno 2020-04-29 00:37:55
When* I was close xd.
StupidTwat 2020-04-29 00:52:11
Exactly what I wanted mate thanks
StupidTwat 2020-04-29 00:52:28
Thanks Reny
Carlos 2020-04-29 00:52:49
In laravel, how to reset the user’s password be manual without sending email, like does the user type the old email and password and then in the new password field type a new password and laravel validates the token and generates a new token with a new password?
DesolatorMagno 2020-04-29 01:05:40
Why you talk about new token?
Carlos 2020-04-29 01:07:51
DesolatorMagno 2020-04-29 01:05:40
Why you talk about new token?

I just wanted to reset the user’s password manually without sending email, as the user types the old email and password and, in the new password field, type a new password and laravel validates the token

|