我得到了用戶表和電話號碼行。我想發送短信,然後用戶激活這樣的:Laravel從db獲取用戶手機
public function activate($token)
{
User::whereActivationToken($token)->firstOrFail()->confirmEmail();
$phone = $this->user->phone;
flash()->success(trans('frontend.account.activated'));
if (Auth::check()) {
return redirect()->route('account.home');
} else {
return redirect()->route('auth.login');
Sms::send("activated!", function($sms) {
$sms->to(['$phone']); # The numbers to send to.
});
}
}
}
但我發現了錯誤,試圖讓非對象的屬性。怎麼了?謝謝你們的答案,請不要生氣,我是laravel的新手。
是否顯示你的錯誤行。如果是這樣的話,你可以解決這個問題? – EddyTheDove