Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
212 views
in Technique[技术] by (71.8m points)

html - Trying to get property 'name' of non-object when trying to click next page using pagination

I get an error saying "Trying to get property 'name' of non-object" when I tried to click on next page using pagination.

Here is my Controller:

$websites = Website::all();
    $menu = Menu::with('categories')->whereHas('categories', function ($query) {
        $query->where('slug', request()->category);
    })->paginate(8);

    $categories = Category::all();
    $categoryName = $categories->where('slug', request()->category)->first()->name;

    return view('shopmenu')->with([
        'menu' => $menu,
        'categories' => $categories,
        'categoryName' => $categoryName,
        'websites' => $websites,
    ]);

The error is in this code:

 $categoryName = $categories->where('slug', request()->category)->first()->name;

How do I solve this?

question from:https://stackoverflow.com/questions/65915741/trying-to-get-property-name-of-non-object-when-trying-to-click-next-page-using

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You need to put check if you are getting any record then try to access name.

 $categoryName = $categories->where('slug', request()->category)->first();

 if ($categoryName) {
 $categoryName = $categoryName->name;
 }

Basically due to chaining when you get null in this query $categories->where('slug', request()->category)->first() and you try to access name property on null you get this error.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...