← prev | next →
Prem Soni 2021-03-11 08:00:02
2021-03-11 07:58:29
I did not see that he is using Query Builder, but it is possible in Eloquent
hm
Prem Soni 2021-03-11 08:00:22
2021-03-11 07:40:52
->first()->pluck(‘id’);
thanks for helping me
dragonmachine 2021-03-11 11:38:52
VueJs India is a community of VueJs Front End Developers focused on sharing knowledge of VueJs.
Off-topics will be moderated.
VueJsIndia
Acird Burn 2021-03-11 12:07:14

anyone knows how to resolve this issue
segungreat 2021-03-11 12:15:42
Acird Burn 2021-03-11 12:07:14
anyone knows how to resolve this issue
Sorry what were you trying to do before this shows up
Acird Burn 2021-03-11 12:16:19
segungreat 2021-03-11 12:15:42
Sorry what were you trying to do before this shows up
i just run these 2 commands
php artisan migrate
php artisan db:seed to import and seed the database
segungreat 2021-03-11 12:32:18
Acird Burn 2021-03-11 12:16:19
i just run these 2 commands
php artisan migrate
php artisan db:seed to import and seed the database
Is it a fresh installation or already edited?
Acird Burn 2021-03-11 12:33:12
did that only thing i did was to run those 2 commands
Acird Burn 2021-03-11 12:33:34
segungreat 2021-03-11 12:32:18
Is it a fresh installation or already edited?
its some system
rootkings 2021-03-11 12:35:50
Hey guys, I have a table called groups. the groups table have a tour_id, guide_id and users_id , code. My question is tour id and guide_id is can be 1 value. But in the groups users_id have a many users id how can i do that in migration with foreign? I’m stuck.
Jomitz 2021-03-11 12:37:52
rootkings 2021-03-11 12:35:50
Hey guys, I have a table called groups. the groups table have a tour_id, guide_id and users_id , code. My question is tour id and guide_id is can be 1 value. But in the groups users_id have a many users id how can i do that in migration with foreign? I’m stuck.
set the foreign key for both the fields that refer the id in the users table
segungreat 2021-03-11 12:58:06
Acird Burn 2021-03-11 12:33:34
its some system
Already edited, maybe you should reinstall
Acird Burn 2021-03-11 12:59:33
segungreat 2021-03-11 12:58:06
Already edited, maybe you should reinstall
how
Prem Soni 2021-03-11 13:46:14
how to do number validation in laravel
Prem Soni 2021-03-11 13:46:28
number min validation
mazcvei 2021-03-11 13:47:00
Prem Soni 2021-03-11 13:46:14
how to do number validation in laravel
“numeric|min:x” …
Prem Soni 2021-03-11 13:47:33
ok
mazcvei 2021-03-11 13:47:59
https://laravel.com/docs/8.x/validation
Prem Soni 2021-03-11 13:48:52
mazcvei 2021-03-11 13:47:00
“numeric|min:x” …
not working
Batu157 2021-03-11 13:49:48
Who can ban this shit
mazcvei 2021-03-11 13:51:26
Prem Soni 2021-03-11 13:48:52
not working
is the official document
Prem Soni 2021-03-11 13:51:32
yes
Prem Soni 2021-03-11 13:51:43
let me send photo
Prem Soni 2021-03-11 13:53:26
Ayushi2020 2021-03-11 13:56:53
https://www.linkedin.com/posts/ayushi-goel-066818152_immediatejoiners-laraveldevelopers-laraveljobs-activity-6775729700162588673-S7AR
Ayushi Goel on LinkedIn: #immediatejoiners #laraveldevelopers #laraveljobs –
LinkedinWe are hiring for Laravel Developers. #immediatejoiners
Location – Noida.
Experience – 2 to 5 years.
Workdays – Monday to Friday.
Kindly share your resume…
foulla_sam 2021-03-11 14:38:27
Prem Soni 2021-03-11 13:53:26
Try to put ‘numeric’ before ‘min:10’
mazcvei 2021-03-11 15:23:14
foulla_sam 2021-03-11 14:38:27
Try to put ‘numeric’ before ‘min:10’
Correctly
mazcvei 2021-03-11 15:23:26
mazcvei 2021-03-11 13:47:00
“numeric|min:x” …
Like this
geohad 2021-03-11 16:51:48
Hi
Any ideas for Document Management System ?
pr070n 2021-03-11 16:56:24
Ребята есть кто из Казани? Надо Джуниор программиста, небольшая зп в 30к, работать с 10-00 до 18-00 4 дня в неделю, или граффик подберу. Знание желательно bootstrap и JavaScript
2021-03-11 18:23:19
2020-07-13 20:28:03
What do you suggest for the Laravel admin panel? Thank you
i install modular package . also i insert custom ckeditor and image croper .
2021-03-11 18:32:16
Prem Soni 2021-03-11 13:46:14
how to do number validation in laravel
digits:10
try this
zmtrn 2021-03-11 19:08:15
Heyya🙋🏻♀️
I hav a query on Post model which ends with pagination..
The Post model has a relationship with User model;
And User model has a hidden attribute named “mobile” .
How can i make “mobile” visible
when i make a query on posts?!
I used the makeVisible() method on a collection of posts, yet the mobile was hidden🤷🏻♀️
Prem Soni 2021-03-11 19:41:39
i tryied it .it was not working and in the end i put jquery validation
Saicharandgp 2021-03-11 20:05:37
Prem Soni 2021-03-11 13:53:26
Try this
[‘required’, ‘min:5’, ‘numeric’]
Or
‘required|min:5|numeric’
← prev | next →