skip to Main Content

Laravel – Attempt to read property "id" on bool (View: D:websiteImageresourcesviewslayout.blade.php), variable not transfering to view

I keep encountering this error on Laravel 8 with PHP 8. Im grabbing the id from the view like so: <li><a href="category/{{$catego->id}}">{{$catego->categories}}</a></li> This then goes to web.php like so: Route::get('category/{id}', [UserController::class, 'categories']); It then goes to the categories function like…

VIEW QUESTION
Back To Top
Search