我想从模型类中为我的一条命名路由生成完整的url。我正在尝试这个:
//file: thread.php
public function getPathAttribute()
{
return route('threads.show',['thread'=>$this->id]);
}
问题是它是否生成以 http://localhost/ 开头的网址字符串 但不是我的域 myforum.com 。
如果我从我的任何一个叶片视图中做同样的事情,我会得到正确的URL,即;的 myforum.com/threads/11
如何从我的模型中使用它?
提前致谢。
答案 0 :(得分:0)
通过将变量.env
的值更改为APP_URL
来更新您的myforum.com
文件