Skip to content
Advertisement

laravel 7.14 build link for product after searching datatable with relation

I have a laravel 7.14 app.

I’m trying to get the search result based on brand name = query.

The problem is with building link to display individual product. It takes brand slug instead of product slug. When I search with brand name I get the desired result but to view a individual product link fetches the brand slug instead of product slug. If I remove the slug from brands table I get an error in displaying results.

My products table has brand_id which tags the brand in product. In brands table I have ‘name’ and ‘slug’.

Products fields:

JavaScript

Brands fields:

JavaScript

Here’s my search in ProductsController:

JavaScript

Advertisement

Answer

Just give alias to one of the slug columns in your query. For example

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement