Log::info('Sending email', array(
'title' => $attributes['title'],
'recipient' => $attributes['email']
));
Mail::queue('emails.welcome', $attributes, function($message) use ($attributes)
{
$message
->to($attributes['email'])
->subject($attributes['title']);
});
問題出在關閉被傳遞給Mail::queue
。怎麼了?這與in the docs完全相同。發送排隊郵件時不允許「封閉」序列化
你的'$ attributes'變量是什麼?它是否包含「Paginator」對象?你能爲我們「var_dump」嗎? – fideloper
這是確切的錯誤? '不允許'關閉序列化'? –