Skip to content
Advertisement

Trying to get property ‘approval_code’ of non-object

I’m trying to build a task scheduler for sending email routine and i got this error when i try to get approval_code from auth.

Here are my code in mail:

JavaScript

and here are code for the GetApprovalPersonByRouteCode

JavaScript

I tried to pass the data via constructor like this

JavaScript

And then i got the error massage

Too few arguments to function AppMailHabisKontrakMail::__construct(), 0 passed

I try to get this value getPerson(auth()->user()->approval_code,HabisKontrak::KODE_MODUL), Thankyou.

Advertisement

Answer

Task scheduler does not have a user session, thus auth()->user() can only return null (non-object).

To fix this, your crontab command can provide the user argument along. And your command can get a user with arguments:

Arguments

All user supplied arguments and options are wrapped in curly braces. In the following example, the command defines one required argument: user:

JavaScript

You may also make arguments optional or define default values for arguments:

JavaScript

Simply pass the load a User object with the user argument (probably the user id or the user name). Pass this User on to HabisKontrakMail object, then you’re good to go.

Wait. Doesn’t that mean the same user is sending every time?

One catch is you can only have 1 user sending all the notification email. But according to the code you showed, the database don’t seem to contain which user actually initiated the notification.

If you need to actually check it, you’ll have to store the user id / username for the notification before it is scheduled. And I don’t have enough information to suggest anything.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement