1
我的代碼是這樣的:如何在郵件通知系統上使用基本URL? (Laravel 5.3)
public function toMail($notifiable)
{
return (new MailMessage)
->subject('Test')
->greeting('Hello '.$notifiable->store->name.'!')
->line('Test 1')
->line('Test 2')
->action('Check Order',url('member/store/sale'))
->line('Thanks');
}
當我點擊的動作,它會調用http://localhost/member/store/sale
這是錯誤
應該調用它http://myshop.dev/member/store/sale
哪有我解決了它?