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
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}}
{{$artikel->intro}}
{{$artikel->body}}