Laravel Property [title] does not exist on the Eloquent builder instance

后端 未结 4 1117
悲哀的现实
悲哀的现实 2021-01-12 10:27

I am getting an error while trying to display data from the database.This problem occurred by other people who have created posts on this website. but they have a foreach lo

4条回答
  •  情话喂你
    2021-01-12 10:57

    this on controller

    public function index()
    {
        $artikel =  Artikel::where('category_id', '1')->first();
        return view('pages.wereld',compact('artikel'));
    }
    

    in view:

    {{$artikel->title}}

    {{$artikel->intro}}

    {{$artikel->body}}

提交回复
热议问题