我更新了项目,但结果显示所有前端路线的空白页面,我回滚了更改,但似乎没有运气。
后端工作原理: http://unionmaterials.com.hk/admin
然而,前端每页只返回空白页
http://unionmaterials.com.hk/page/contact
我已尝试登录控制器并
class PageController extends Controller
{
/**
* Create a new controller instance.
*
* @return void
*/
public function __construct()
{
}
/**
* Show the application dashboard.
*
* @return \Illuminate\Http\Response
*/
public function contact()
{
$this->data['contact'] = Contact::find(1);
return view('contact')->with($this->data);
}
}
如果我更改为其他视图,例如return view('welcome')->with($this->data);
,它有效,所以我将整个内容从欢迎复制到联系,但它仍然返回空白页
无论如何要解决这个问题? 非常感谢