Anyone know how to catch error when php reached up max execute time?

|
# 2021-03-12 15:49:41
Hello all, how to creat otp based login,
Can i integrate firebase and mysql in laravel
jcsnbgyq 2021-03-12 16:31:37
berto309 2021-03-12 15:19:36
Hey y’all. Please when I’m sending on queues. When I make an update in my job class it doesn’t reflect on the app. I’m on local machine.

are you artisan listening?

…. . 2021-03-12 19:52:28
Hello
Can any one send fullcalendar examples laravel8
…. . 2021-03-12 19:54:39
I want to show events bar length with time in month view

Example 12/03/2021 3:00 am to 13/03/2021 5: 00 am as a bar length not full bar

Saumil Adalwar 2021-03-12 20:40:35
Hello,

We are hiring Immediate PHP Developer / Sr. PHP Developer

#immediatehiring #immediatejoiners #immediate #immediateopening #immediatelyavailable #immediatejoining #immediatejoiner

#phpjobs #phpdeveloper #phpdevelopers #phpprogrammer #phpframeworks #phpwebdevelopment #phpdevelopment #phplaravel

#ahmedabad #Mumbai #pune #bangalore #noida #indore #jaipur #kochi

#Experience – 0.6 Months to 6 Years
#Location – Ahmedabad / Mumbai / Pune / Bangalore / Noida / Jaipur / Kochi / Indore

#Skill :
– Core PHP
– Any MVC of PHP (CI / Laravel / Zend / Symfony)
– Excellent Communication

Interested candidates can share cv on saumil.adalwar@neosofttech.com or contact on 9033251069

meetlunkad 2021-03-12 21:27:07
How to have something like @push and @endpush in core php

So i can have file after nav and before footer

2021-03-12 22:40:16
laravel_discuss-73211.jpg
any one can help me to fix this problem plz?
^_* 2021-03-12 23:36:50
Gus helps me
I want to do dynamic Nav tab bootstrap
Both the list and the contents dynamic
EverythingsCrypto 2021-03-13 00:18:06
Saumil Adalwar 2021-03-12 20:40:35
Hello,

We are hiring Immediate PHP Developer / Sr. PHP Developer

#immediatehiring #immediatejoiners #immediate #immediateopening #immediatelyavailable #immediatejoining #immediatejoiner

#phpjobs #phpdeveloper #phpdevelopers #phpprogrammer #phpframeworks #phpwebdevelopment #phpdevelopment #phplaravel

#ahmedabad #Mumbai #pune #bangalore #noida #indore #jaipur #kochi

#Experience – 0.6 Months to 6 Years
#Location – Ahmedabad / Mumbai / Pune / Bangalore / Noida / Jaipur / Kochi / Indore

#Skill :
– Core PHP
– Any MVC of PHP (CI / Laravel / Zend / Symfony)
– Excellent Communication

Interested candidates can share cv on saumil.adalwar@neosofttech.com or contact on 9033251069

Is it a remote job

Saumil Adalwar 2021-03-13 00:23:54
Yes in some cases we r providing remote job
amir_0787 2021-03-13 01:25:55
hello friends
i have front and back folders in view folder
but it just shows front !
when i want to access back folder it returns 403 error
can you help me?
jcsnbgyq 2021-03-13 02:41:59
is there right permissions for the folder
amir_0787 2021-03-13 03:30:21
jcsnbgyq 2021-03-13 02:41:59
is there right permissions for the folder

Yes
It is on localhost

amir_0787 2021-03-13 03:44:29
The requested resource /admincp was not found on this server.
Prem Soni 2021-03-13 07:21:38
if i try to browse image in file field and when i see the value of it it is showing me blank
Prem Soni 2021-03-13 07:21:49
using input requests
ipqn78 2021-03-13 08:03:02
can use formData in your front
ipqn78 2021-03-13 08:03:42
https://javascript.info/formdata#:~:text=FormData%20objects%20are%20used%20to,then%20append%20fields%20with%20methods%3A&text=formData.-,append(name%2C%20blob%2C%20fileName),formData.

FormDatajavascript.info
gxlo_supreme 2021-03-13 08:08:32
Guys I am starting out in Laravel… Is learning Javascript a MUST?
veddishant 2021-03-13 08:14:25
$menu = Menus::firstOrCreate([‘group_id’=>1],[‘name’ => “Menu”,’default’=>0]);

Putting this in tinker it says

IlluminateDatabaseQueryException with message ‘SQLSTATE[HY000]: General error: 1364 Field ‘name’ doesn’t have a default value (SQL: insert into admin_menus (updated_at, created_at) values (2021-03-13 05:11:24, 2021-03-13 05:11:24))’

I am already passing name in value array

Rashid 2021-03-13 08:17:25
hei
Rashid 2021-03-13 08:17:43
how can i filter product with brand name
Chongeng 2021-03-13 08:30:24
Hello, anyone know how to catch error when php reached up max execute time ?
gxlo_supreme 2021-03-13 08:36:32
veddishant 2021-03-13 08:14:25
$menu = Menus::firstOrCreate([‘group_id’=>1],[‘name’ => “Menu”,’default’=>0]);

Putting this in tinker it says

IlluminateDatabaseQueryException with message ‘SQLSTATE[HY000]: General error: 1364 Field ‘name’ doesn’t have a default value (SQL: insert into admin_menus (updated_at, created_at) values (2021-03-13 05:11:24, 2021-03-13 05:11:24))’

I am already passing name in value array

Mass assignment I guess

ipqn78 2021-03-13 08:39:07
$menu = Menus::firstOrCreate([‘group_id’=>1,’name’ => “Menu”,’default’=>0])
ipqn78 2021-03-13 08:39:33
ipqn78 2021-03-13 08:39:07
$menu = Menus::firstOrCreate([‘group_id’=>1,’name’ => “Menu”,’default’=>0])

the sintaxis is this

veddishant 2021-03-13 09:04:52
gxlo_supreme 2021-03-13 08:36:32
Mass assignment I guess

Already given in protected $fillable = [‘name’,group_id’,’default’]; in model file.

veddishant 2021-03-13 09:05:51
ipqn78 2021-03-13 08:39:07
$menu = Menus::firstOrCreate([‘group_id’=>1,’name’ => “Menu”,’default’=>0])

Syntax is correct bcz firstOrCreate accepts 2 arg.
1 find attributes array
2 value array it include aribute array here to

gxlo_supreme 2021-03-13 09:06:42
veddishant 2021-03-13 09:04:52
Already given in protected $fillable = [‘name’,group_id’,’default’]; in model file.

Also check your suntax…all should be in a single array…I mean the square brackets there seem plenty than required

veddishant 2021-03-13 09:08:23
gxlo_supreme 2021-03-13 09:06:42
Also check your suntax…all should be in a single array…I mean the square brackets there seem plenty than required

laravel_discuss-73244.jpg

gxlo_supreme 2021-03-13 09:09:27
ipqn78 2021-03-13 08:39:07
$menu = Menus::firstOrCreate([‘group_id’=>1,’name’ => “Menu”,’default’=>0])

Should be this way…

veddishant 2021-03-13 09:12:04
gxlo_supreme 2021-03-13 09:09:27
Should be this way…

But i have to find from group id only if not get than create

veddishant 2021-03-13 09:14:05
laravel_discuss-73247.jpg
Check second example from official laravel doc
gxlo_supreme 2021-03-13 09:16:44
veddishant 2021-03-13 09:14:05
Check second example from official laravel doc

Why are you putting them columns in different arrays though?

Prem Soni 2021-03-13 09:17:24
laravel_discuss-73249.jpg

|