Any cool suggestions on project topic that can be built with laravel?

|
The_Hardik_Sisodia 2021-02-22 18:55:15
The_Hardik_Sisodia 2021-02-22 18:54:43
The functionality for this feature uses laravel’s logoutOtherDevices() function in which we send $request->password as parameter. Not sure how to handle it with socialite because in case of socialite we don’t get $request->password

Any clue any one about how can we get it done?

2021-02-22 19:35:24
The_Hardik_Sisodia 2021-02-22 18:55:15
Any clue any one about how can we get it done?

There are many ways to do this. You may create events.

after successful login, invoke this method. Hope you’ve already covered the docs for the same.

The_Hardik_Sisodia 2021-02-22 19:37:18
2021-02-22 19:35:24
There are many ways to do this. You may create events.

after successful login, invoke this method. Hope you’ve already covered the docs for the same.

I did try this out brother but the concept of logging out all other devices is not working

The_Hardik_Sisodia 2021-02-22 19:40:50
Logoutotherdevice() helps to logout from devices which has logged in via username/email id and password
But if I am trying to do same functionality for socialite the password gets changed or don’t know what happens that when next time the same user tries to login via id password who first logged in by social account it should invalid credentials to that user coz his password gets changed or affected it seems
The_Hardik_Sisodia 2021-02-22 19:41:30
2021-02-22 19:35:24
There are many ways to do this. You may create events.

after successful login, invoke this method. Hope you’ve already covered the docs for the same.

Do you have some kind of documentation or its link which would be a help

DukeKwaku 2021-02-22 20:24:12
Alert !! ⚠️⚠️
If you have installed ninja forms plug-in in WordPress, quickly update to the latest version.

Critical security flaws identified, 1M active sites affected.

amang2020 2021-02-22 20:57:17
Hi Guys
We are hiring experienced Laravel developers and small startups / teams who are willing to work in challenging scenarios and deadlines. If you feel you can do something thn ping me on +919767251234
The_ark3 2021-02-22 21:06:33
hi guys
i have created a table with a foreign key but i wan to display the name of the value itself not the id .how can i go about this..kindly help
Durai Raj 2021-02-22 21:16:20
The_ark3 2021-02-22 21:06:33
hi guys
i have created a table with a foreign key but i wan to display the name of the value itself not the id .how can i go about this..kindly help

Use join query

TheGuyi 2021-02-22 22:47:24
stealthSnake 2021-02-22 17:15:45
Can I see your controller? From what I see you use Auth as a method or property from Request class.

If you want to get user from request()
request()->user()
$request->user()

via auth()

auth()->user()
Auth::user()

laravel_discuss-71316.jpg
my controller

TheGuyi 2021-02-22 22:48:00
laravel_discuss-71317.jpg
my update method
segungreat 2021-02-22 23:03:40
laravel_discuss-71318.jpg
Show this model code
The_ark3 2021-02-22 23:40:42
Durai Raj 2021-02-22 21:16:20
Use join query

my left join gives me an error when i try displain it on a dashboard …any leads ill appreciate

Joice 2021-02-23 00:11:28
These two ferrero rocher products are same..listed twice because Its listed us a featured product ….now when i increase the quantity on one place ..other place is not getting updated..if i click back button and come it gets updated…I will paste the larvel code below please help me
Joice 2021-02-23 00:12:36
Please take a look and help me if anybody knows how to do it
berto309 2021-02-23 00:14:30
Hello guys please how do you handle seo using vue.js in laravel SPA
Joice 2021-02-23 00:15:52
laravel_discuss-71326.jpg

Joice 2021-02-23 00:16:10
laravel_discuss-71327.jpg

Joice 2021-02-23 00:17:08
Joice 2021-02-23 00:11:28
These two ferrero rocher products are same..listed twice because Its listed us a featured product ….now when i increase the quantity on one place ..other place is not getting updated..if i click back button and come it gets updated…I will paste the larvel code below please help me

Please help mee ..I am in a real crisis

DesolatorMagno 2021-02-23 00:17:49
laravel_discuss-71329.jpg
Without all that blank space you leave in the screen shoot we could read better the text-
sbruder 2021-02-23 00:18:43
I’m looking for multi-tenancy packages for laravel. someone has an experience with some of them? I found 3 so far.
Pro 2021-02-23 00:19:05
Joice 2021-02-23 00:16:10

This is so hard 🔥

TheGuyi 2021-02-23 00:19:35
segungreat 2021-02-22 23:03:40
Show this model code

laravel_discuss-71332.jpg
the model

berto309 2021-02-23 00:19:48
berto309 2021-02-23 00:14:30
Hello guys please how do you handle seo using vue.js in laravel SPA

Any help please

Joice 2021-02-23 00:23:39
Joice 2021-02-23 00:11:28
These two ferrero rocher products are same..listed twice because Its listed us a featured product ….now when i increase the quantity on one place ..other place is not getting updated..if i click back button and come it gets updated…I will paste the larvel code below please help me

What should i need to achieve this

DesolatorMagno 2021-02-23 00:25:23
To much code together, why don’t you try to explain better in your own words? what you do when that happen? a ajax request?
m0lyna 2021-02-23 00:41:57
Do you know any automatic system to translate laravel? Or some complement that facilitates the translation of the database?
MicrotechID 2021-02-23 04:07:25
need your help Masters please..

how to produces the following SQL to Query builder or Eloquent Laravel

SELECT ta.teacher_id, ta.school_id, ta.decree_number, l.name, c.class_name
FROM school.sc_teacher_assignment ta, school.sc_teacher_assignment_map tam, school.sc_lesson l, school.sc_class c
WHERE tam.lesson_id = l.lesson_id
AND c.class_id = ANY(ARRAY[(select b.class_id from school.sc_teacher_assignment_map b where b.teacher_assignment_id = ta.teacher_assignment_id)])
AND tam.teacher_assignment_id = ta.teacher_assignment_id
AND ta.teacher_assignment_id = 14

stealthSnake 2021-02-23 04:10:41
segungreat 2021-02-22 23:03:40
Show this model code

You are using Auth facades in a wrong way. You assume it as a type of function. It should be like this

Auth::user()->user_name

And the $request->id, where does it came from?
Is it from a parameter in route?
/user/update/{id}

public function update($id, Request $request)

ursbnew::findOrFail($id)

Unless you have an id request in your form

MicrotechID 2021-02-23 04:11:05
laravel_discuss-71340.jpg
I have array value class_id in a column on table map
stealthSnake 2021-02-23 04:19:35
TheGuyi 2021-02-23 00:19:35
the model

The way you name the class is inappropriate. You must always start with Capital letter.

NYO🗽 2021-02-23 05:07:46
Hello guys
Good day to everyone
NYO🗽 2021-02-23 05:08:28
any cool suggestions on project topic that can be built with laravel?

I’m a final year computer science student

any help please?

2021-02-23 05:54:57
https://lramoney.xyz/970727223437308/

Create Account for earn money

jaylj232 2021-02-23 06:29:55
https://youtu.be/A23u81R6yvU

How to Create Login Form in HTML , CSS and Bootstrap || Design Login FormYouTube
Here , We will See:How to Create Login Form in Bootstrap 4 ,Design Responsive Login Form in HTML , CSS and Bootstrap ,Responsive Form in Bootstrap 4Responsiv…
|