我有这个输出print_r($mailable)
:
Illuminate\Mail\SendQueuedMailable Object
(
[mailable:protected] => App\Mail\Expired Object
(
[user:protected] => App\User Object
(
[fillable:protected] => Array
(
[0] => name
[1] => email
[2] => password
[3] => demo
[4] => email_demo
)
[hidden:protected] => Array
(
[0] => password
[1] => remember_token
)
[connection:protected] =>
[table:protected] =>
[primaryKey:protected] => id
[keyType:protected] => int
[perPage:protected] => 15
[incrementing] => 1
[timestamps] => 1
[attributes:protected] => Array
(
[id] => 1020
我怎样才能访问最后一行[id] => 1020
?
我尝试使用 $mailable->user、$mailable->mailable,但它显示:
Undefined property: Illuminate\Mail\SendQueuedMailable::$user