โ prev | next โ
RahiMSuleymaN 2021-03-27 10:29:58
Hi everyone How can I do category_id [1,2,3,4] update according to order_number [3,2,1,4] in a query
BaronNo1 2021-03-27 11:33:09
I am a junior level web developer with 1 yr experience. At the moment, I have some options to work remotely for agencies, and need to negotiate hourly rate.
Having never worked remotely before, I want to know how much the standard rate is for juniors. I am a back-end developer using either Php(Laravel).
rootkings 2021-03-27 16:29:10
Hey guys, i am using metronic theme. In my form i using kt repeater. If input type is text is worked for me but i want to cha ge type to select2 now after one repeater select2 not working because of id. What can i do that?
unknownstranges 2021-03-27 17:00:22
I have a script in my HTML file that should only in desktop devices. I tried with <div id=”desktop”></div> but it doesn’t work. So How can i achive this?
Jomitz 2021-03-27 17:11:05
unknownstranges 2021-03-27 17:00:22
I have a script in my HTML file that should only in desktop devices. I tried with <div id=”desktop”></div> but it doesn’t work. So How can i achive this?
What?
Saidu 2021-03-27 18:38:20

Please can any one help me with this problem
2021-03-27 21:43:53
Is there any gallery plugin or code available for laravel?
sobirjonovs 2021-03-27 23:39:58

๐คHi guys, I’m troubling with that error, how can I overcome it? Any solution?
sobirjonovs 2021-03-27 23:40:41
I have no idea what the cause is.
amir_0787 2021-03-27 23:52:26
sobirjonovs 2021-03-27 23:40:41
I have no idea what the cause is.
have a look at this
https://github.com/laravel/framework/issues/26045
Illegal offset type in isset or empty (version: 5.7) ยท Issue #26045 ยท laravel/framework –
GitHubUrl: “/password/email” ErrorException โฆ/vendor/laravel/framework/src/Illuminate/Support/NamespacedItemResolver.php25 // If we’ve already parsed the given key, we’l…
amir_0787 2021-03-27 23:53:00
staudenmeir commented on Oct 21, 2018
amir_0787 2021-03-27 23:55:32
also see this link
https://stackoverflow.com/questions/22298454/php-illegal-offset-type-in-isset-or-empty
php Illegal offset type in isset or empty –
Stack OverflowI have this code that was working initially, but does not work after I restarted my computer.
The error I am getting is:
Warning: Illegal offset type in isset or empty in D:xampphtdocs
Acird Burn 2021-03-28 00:06:02
We are looking out for an experienced Front-end developer that has worked with reactjs to help towards a development of a couple of backend dashboards built up in html bootstrap and reactjs your task is mainly to handle all the api development and making all designs ready for Front-end well documented up for backend development designer must be a full time freelancer and must be very fast at getting work done with Front-end
Joesmith123 2021-03-28 00:11:30
BaronNo1 2021-03-27 11:33:09
I am a junior level web developer with 1 yr experience. At the moment, I have some options to work remotely for agencies, and need to negotiate hourly rate.
Having never worked remotely before, I want to know how much the standard rate is for juniors. I am a back-end developer using either Php(Laravel).
It depends
mehravish 2021-03-28 00:17:50
Count olaf ๐
mehravish 2021-03-28 00:51:19
Okay sorry, just kidding, no offense
fathi 2021-03-28 02:05:18
hi dear how to creat project laravel 8 shop full ?
hddhagai 2021-03-28 06:31:26
Joice 2021-03-26 09:45:25
And no commands are working
Check on the version of PHP that is required for the project
snehalkadwe 2021-03-28 07:24:44
Jihat_developer 2021-03-25 20:51:02
this problem? help meeeee
You need to provide name of your component (register your component)
Ebenezer Oyenuga 2021-03-28 08:00:41
Thanks for sharing
jchris_cs 2021-03-28 09:25:43
Could somebody tell me why the @push directive could not be working into a partial view rendered by @include?
Azad Akhtar 2021-03-28 09:33:24

hello everyone i am facing this issue
Call to a member function save() on string
foulla_sam 2021-03-28 09:48:03
Azad Akhtar 2021-03-28 09:33:24
hello everyone i am facing this issue
Call to a member function save() on string
Your update method takes two parameters($request and $id), is the $id different to $request->id?
2021-03-28 10:00:33
You can also do like this (Request $request, Student $student) but make sure in route replace {id} to {student} and respective model automatic find by laravel for u
rizvisharis 2021-03-28 10:01:00
Resumable file or video upload in Laravel: How to Handle large file uploads in an elegant way? Any idea guys plz sugget it
thekiharani 2021-03-28 10:06:10
Azad Akhtar 2021-03-28 09:33:24
hello everyone i am facing this issue
Call to a member function save() on string
Use $student->first_name = $request->first_name and NOT ~$student = $request->first_name~
Jihat_developer 2021-03-28 10:16:32
snehalkadwe 2021-03-28 07:24:44
You need to provide name of your component (register your component)
ok this not working
GistOf 2021-03-28 11:00:13
Hi @Thato_Chinonso
GistOf 2021-03-28 11:00:30
Are you a motswana, Thato?
BaronNo1 2021-03-28 11:01:52
Azad Akhtar 2021-03-28 09:33:24
hello everyone i am facing this issue
Call to a member function save() on string
I think you need to initialize the student class first. So just replace the
$student = Student::find($request->id) with $student = new Student
BaronNo1 2021-03-28 11:03:43
Azad Akhtar 2021-03-28 09:33:24
hello everyone i am facing this issue
Call to a member function save() on string
And besides from line 100 – 122, can be re-written in just 3 -4 lines max.
BaronNo1 2021-03-28 11:09:57
BaronNo1 2021-03-28 11:01:52
I think you need to initialize the student class first. So just replace the
$student = Student::find($request->id) with $student = new Student
Azad let me know if this does not work
Azad Akhtar 2021-03-28 11:10:53
Thanks but i changed method to update like
Student::find($id)->update($request->all());
session()->flash(‘message’, ‘Student updated successfully.’);
return redirect()->to(‘/student/list’);
BaronNo1 2021-03-28 11:14:29
Azad Akhtar 2021-03-28 11:10:53
Thanks but i changed method to update like
Student::find($id)->update($request->all());
session()->flash(‘message’, ‘Student updated successfully.’);
return redirect()->to(‘/student/list’);
ok
Anas3 2021-03-28 11:49:13
haw fix tha Error???
โ prev | next โ