laravel未定义偏移量0

问题描述

我遇到错误

未定义的偏移量:0(视图:C:\ xampp \ htdocs \ office \ ccodez \ resources \ views \ services \ service-details.blade.PHP

关于页面和联系页面的我的服务也显示相同的错误

Routes / web.PHP

enter image description here

services.blade.PHP

enter image description here

services.service-details.blade.PHP

enter image description here

ServiceController.PHP

enter image description here

IndexController.PHP

enter image description here

请给我一个我尝试过但无法解决解决方

解决方法

索引控制器

getResultList()

服务刀片中

public function show($slug) {
    $service = Service::where('s_slug',$slug)->first();
    return view('')->with(compact('service'));
}