← prev | next →
anuprasadgc 2020-11-24 20:09:11
anuprasadgc 2020-11-24 19:48:36
am getting this error
this getting when i try to update or delete
hypernxf 2020-11-24 20:11:12
I think your route is
Route::put(‘/articles/{article}’, [ArticleController::class, ‘update’]);
hypernxf 2020-11-24 20:11:35
Missing {article} in your ArticleController@update route
hypernxf 2020-11-24 20:11:46
Line 29
anuprasadgc 2020-11-24 20:15:14
no thats currect am sure
hypernxf 2020-11-24 20:16:45
Ok then remove {{$article->id}} in your form
hypernxf 2020-11-24 20:17:03
<form action
hypernxf 2020-11-24 20:18:10
You have a form with action /article/$article->id and PUT method.
naturally Laravel is trying to find a PUT route that points to /article/{article}
hypernxf 2020-11-24 20:18:45
So either your web.php is written wrongly, or the form is wrong.
Or, i’m missing out on the actual route
2020-11-24 20:32:26
anuprasadgc 2020-11-24 20:07:56
this is web.php
Here you should pass {article:id}
2020-11-24 20:36:57
anuprasadgc 2020-11-24 19:49:13
In form action /articles/{{$aritlce->id}}/edit
Instead of using put you can use patch, also you may define name to routing urls for easy access.
gxlo_supreme 2020-11-24 23:17:48
guys I need help, I have not been able to send email through smtp here are my configs…have been stuck for a while now
gxlo_supreme 2020-11-24 23:18:30
gxlo_supreme 2020-11-24 23:18:30
gxlo_supreme 2020-11-24 23:18:30
TOXmoltox 2020-11-24 23:38:45
Hi! I need to check if a user has a record in a table (custom settings) before the user can store in another table. How to check is no problem. But what is best practice where to do this? Middleware? Store in a service and call from controller? Ty in advance!
TOXmoltox 2020-11-25 01:00:23
gxlo_supreme 2020-11-24 23:17:48
guys I need help, I have not been able to send email through smtp here are my configs…have been stuck for a while now
For gmail you maybe need few more steps. You need to enable “less secure apps”. Also take a look at your encryption settings. See: https://medium.com/@agavitalis/how-to-send-an-email-in-laravel-using-gmail-smtp-server-53d962f01a0c
How to send an Email in Laravel using Gmail SMTP Server –
MediumHave you been wondering how to send an email in Laravel using its default SMTP settings without having an SMTP account or purchasing an…
2020-11-25 10:36:22

Hi
I have this problem when laravel installed
Can you help me for solve this issue
israa2912 2020-11-25 10:48:21
There is any one work with laravel nova dashboard?
Iam_surajkumarthakur 2020-11-25 10:56:56
User auth in Laravel | Laravel Blog Website | Laravel 8 Tutorial | Learn Laravel 8. In this video, We will learn how to create a user authentication system in Laravel. Laravel provides us full featured auth system, we will use this auth system and implement in out blogging website. Please like this video and subscribe to the channel for regular updates. I am updating all source code on GitHub.
#Laravel8 #LaravelTutorials #LaravelAuth #UserAuthLaravel #Bootstrap4 #LearnLaravel #CodeArtisanLab
—–
Please search #codeArtisanLab on YouTube
bineyenatu 2020-11-25 11:23:01
how to add Google map in laravel
cayetanohosma 2020-11-25 11:25:04
TOXmoltox 2020-11-24 23:38:45
Hi! I need to check if a user has a record in a table (custom settings) before the user can store in another table. How to check is no problem. But what is best practice where to do this? Middleware? Store in a service and call from controller? Ty in advance!
I guess that the best option could be use the Eloquent events in order to catch the pre-persist. I would work there.
Bear in mind that this event was fired for all persisting operations, so you will receive thousands of events, you must found when check and the check should be as fast as possible in order to save the data as soon as possible.
LambdaVector 2020-11-25 12:34:36
can some one solve this?
In DuskServiceProvider.php line 15:
Class ‘LaravelDuskBrowser’ not found
DesolatorMagno 2020-11-25 12:45:53
GistOf 2020-11-24 12:26:19
Now you’re being retarded
Is weird reading someone talking about ageisms and them using the word retarded as a insult.
GistOf 2020-11-25 12:48:34
DesolatorMagno 2020-11-25 12:45:53
Is weird reading someone talking about ageisms and them using the word retarded as a insult.
No, it’s not. I’m describing his actions. I didn’t call someone names for something they cannot change
DesolatorMagno 2020-11-25 12:57:44
GistOf 2020-11-25 12:48:34
No, it’s not. I’m describing his actions. I didn’t call someone names for something they cannot change
Yet it is, that you find certain things offensive and another’s not, that you fell that telling someone something about their age is bad, but calling retarded someone as a insult, Implying that being retarded is bad, is a really weird place to stand.
GistOf 2020-11-25 12:58:31
DesolatorMagno 2020-11-25 12:57:44
Yet it is, that you find certain things offensive and another’s not, that you fell that telling someone something about their age is bad, but calling retarded someone as a insult, Implying that being retarded is bad, is a really weird place to stand.
True
GistOf 2020-11-25 12:59:11
I had a momentary lapse of judgment as anger took over
GistOf 2020-11-25 12:59:28
Thanks for pointing it out
DesolatorMagno 2020-11-25 12:59:49
NP
solotron2020 2020-11-25 13:52:22
i need help with mail system
solotron2020 2020-11-25 13:53:39

can any help me on how i can resolve this
solotron2020 2020-11-25 13:55:08

can any one help me debuging this error
jralison 2020-11-25 14:10:55
solotron2020 2020-11-25 13:53:39
can any help me on how i can resolve this
It might be a firewall blocking the connection. What have you tried already up to now?
kevinpita 2020-11-25 14:12:10
Is there anyway I can make “my own” Auth::attempt
I would like to create from scratch my login and register part (as it has some special features)
solotron2020 2020-11-25 14:12:13
jralison 2020-11-25 14:10:55
It might be a firewall blocking the connection. What have you tried already up to now?
i have change the mail from smtp
ldefra 2020-11-25 14:18:52
is it possible to have a tutorial on how to implement email verification, in the Laravel / App External (such as Vuejs or Mobile App) environment?
Jadidi_82 2020-11-25 15:05:43
How can I insret two or more values to database at one time?
mohsen 2020-11-25 15:14:12
Jadidi_82 2020-11-25 15:05:43
How can I insret two or more values to database at one time?

mohsen 2020-11-25 15:14:44
https://laravel.com/docs/8.x/eloquent-relationships#the-save-method
← prev | next →