问题描述
我遇到错误
未定义的偏移量:0(视图:C:\ xampp \ htdocs \ office \ ccodez \ resources \ views \ services \ service-details.blade.PHP)
Routes / web.PHP
services.blade.PHP
services.service-details.blade.PHP
ServiceController.PHP
IndexController.PHP
解决方法
索引控制器
getResultList()
服务刀片中
public function show($slug) {
$service = Service::where('s_slug',$slug)->first();
return view('')->with(compact('service'));
}