← prev | next →
united_arab_emarites 2021-09-12 23:34:47
MrSrv7 2021-09-12 23:33:48
Even I’m planning to learn but there’s no full and proper material
there ar to much material
MrSrv7 2021-09-12 23:35:07
Can you ping me in private
united_arab_emarites 2021-09-12 23:35:25
MrSrv7 2021-09-12 23:35:07
Can you ping me in private
ok
jreadr 2021-09-12 23:37:46
Hi
I need your help
I’m working on Laravel project.. And i have admin theme..
In this theme there is input text (phone number) with inputmask
<input type=”text” class=”form-control” data-inputmask=”‘mask’:[ ‘(999) 999-9999’]” data-mask>
But when I copy whole form-group in my Laravel project it’s not working
(not just inputmask.. Colorpicker.. Datepicker….)
I copy every js folder and css.. And i import every link <script >
Please what the solution
u_f_0_1 2021-09-13 01:33:45

hi please i need help, my login controller returns a blank page. i don’t know why
Dawood Shaikh 2021-09-13 03:37:29
u_f_0_1 2021-09-13 01:33:45
hi please i need help, my login controller returns a blank page. i don’t know why
Instead of dd($credentials) try dd($request) and see what you get in request
rajab_007 2021-09-13 04:54:12
#ask
Can you recommend me a laravel YouTuber that have many projects in his YouTube video
WisDev 2021-09-13 07:05:56

battling with this error please i need help
Arvind Bartwal 2021-09-13 09:28:06
We are looking for #phpdeveloper!
Tools – #laravel , #php & #mysql
Minimum – 4 years in each tools
Working – 5.5 Days
Salary Max – 15LPA
Notice Period – 15days
Location – #newdelhi share resume at arvind@apsdun.com
b_pankaj 2021-09-13 09:38:42

Bro can anyone help me with this why i got this error, In registration function it has no error but in login it gets an error please help
XasanKarimjonov 2021-09-13 09:45:37
b_pankaj 2021-09-13 09:38:42
Bro can anyone help me with this why i got this error, In registration function it has no error but in login it gets an error please help
Win+shift+s
rajab_007 2021-09-13 10:00:53
WisDev 2021-09-13 07:05:56
battling with this error please i need help
Not using count function as it should
KrysRKL 2021-09-13 10:11:34
Hello everyone
Anyone with a quick “get-started with composer” course?
Peguy10 2021-09-13 10:54:45
Please I want to update my profile user I don’t work🙏🙏
Begroups 2021-09-13 12:08:50
where can i buuy good templates vuejs?
Ovesh Kazi 2021-09-13 12:23:11
Guys i need a help in my laravel api
Ovesh Kazi 2021-09-13 12:24:05

When I’m fetching data from database the id is coming twice i want only one id once
SHUBHAM PANCHAL 2021-09-13 12:25:16

Guys i need a help in this Laravel api…i want to fetch whole data but i got same id twice like 67 id is coming 2 times..
SHUBHAM PANCHAL 2021-09-13 12:25:31
SHUBHAM PANCHAL 2021-09-13 12:25:16
Guys i need a help in this Laravel api…i want to fetch whole data but i got same id twice like 67 id is coming 2 times..
$usersPan = DB::table(‘user_workouts’)
->join(‘users’, ‘user_workouts.user_id’, ‘=’, ‘users.id’)
->select(‘users.id’)
->get();
SHUBHAM PANCHAL 2021-09-13 12:25:45
SHUBHAM PANCHAL 2021-09-13 12:25:31
$usersPan = DB::table(‘user_workouts’)
->join(‘users’, ‘user_workouts.user_id’, ‘=’, ‘users.id’)
->select(‘users.id’)
->get();
I’m using this code, some one explain me how can i fetch one id once at time
its_japheth 2021-09-13 12:53:20
No idea
Habib_Mhamadi 2021-09-13 13:16:29
SHUBHAM PANCHAL 2021-09-13 12:25:31
$usersPan = DB::table(‘user_workouts’)
->join(‘users’, ‘user_workouts.user_id’, ‘=’, ‘users.id’)
->select(‘users.id’)
->get();
You cannot achieve that by joins
Habib_Mhamadi 2021-09-13 13:16:46
You need to use relationships
Habib_Mhamadi 2021-09-13 13:29:02
Another way is:
$userPans = DB::table(‘users’)->get();
foreach($userPans as $user) {
$user->pans = DB::table(‘user_workouts’)->where(‘user_id’, $user->id)->get()->toArray();
}
return $userPans->toArray();
manuelbosi 2021-09-13 14:42:01
SHUBHAM PANCHAL 2021-09-13 12:25:45
I’m using this code, some one explain me how can i fetch one id once at time
You can try with a groupBy
etekumoses 2021-09-13 16:23:34
Guys am here planning on developing a museum admin panel but ran short of features kindly help me also put
Said Ahamri 2021-09-13 16:34:51
Hi, is there anybody who is looking for a small project ?
Consist Google Sheets -> Laraval Dashboard -> 3rd Party Accounting software
Said Ahamri 2021-09-13 16:35:08
If there is anybody who is experienced and looking for a small project
Said Ahamri 2021-09-13 16:35:19
he/she can send me a om
Said Ahamri 2021-09-13 16:35:29
pm
A_l_x_84 2021-09-13 17:06:42
sbruder 2021-09-13 18:29:12
I’m dealing with a particular behaviour that I cannot explain. in a DB::listen() I’m doing a Redis::incr(‘QUERY_COUNT’);. When retrieving it, I’m getting ‘1’ no matter what. Doing Redis::incr() in a tinker console it works as it should. That DB:listen() is working because I also log all queries and they are getting into logs.
Kuldeep Panchotiya 2021-09-13 18:35:13
Dkhicher 2021-09-13 18:42:24
b_pankaj 2021-09-13 09:38:42
Bro can anyone help me with this why i got this error, In registration function it has no error but in login it gets an error please help
Did you get any error during login?
b_pankaj 2021-09-13 18:54:20
Dkhicher 2021-09-13 18:42:24
Did you get any error during login?
No I’m using api to login, but i got an error in my code undefined method createToken
← prev | next →