Today, We want to share with you Laravel WhereHas then orWhereHas Example.In this post we will show you difference between where and wherehas in laravel 6, hear for orWhereHas on relation with whereHas in Laravel 6 we will give you demo and example for implement.In this post, we will learn about Laravel 6 wherehas laravel relation with an example.
Laravel WhereHas then orWhereHas Example
Contents
There are the Following The simple About Laravel6 WhereHas then orWhereHas Example Full Information With Example and source code.
As I will cover this Post with live Working example to develop laravel hasmanythrough pivot, so the some major files and Directory structures for this example is following below.
Laravel 6 whereHas with orWhereHas Examples
simple Laravel 6 whereHas with orWhereHas in Laravel controller define a method
public function myProducts() { $products = Product::with(['pid', 'pname']); if ($request->has('name')) { $products = $products->whereHas('pid', function( $query ) use ( $request ){ $query->where('name', $request->name); })->orWhereHas('pname', function( $query ) use ( $request ){ $query->where('name', $request->name); }); } $products = $products->get(); dd($products); }
simple loaded both associations first and then simple chained the whereHas and orWhereHas
$product = $product->with('homeCategory'); $product = $product->with('awayCategory'); $product = $product->whereHas('homeCategory', function( $query ) use ( $parameterValues ){ $query->where('pname', 'zommer' ); })->orWhereHas('awayCategory', function( $query ) use ( $parameterValues ){ $query->where('pname', 'zommer' ); });
Web Programming Tutorials Example with Demo
Read :
Summary
You can also read about AngularJS, ASP.NET, VueJs, PHP.
I hope you get an idea about LaravelPHP WhereHas then orWhereHas Example.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, donβt forget to share.
I am Jaydeep Gondaliya , a software engineer, the founder and the person running Pakainfo. I’m a full-stack developer, entrepreneur and owner of Pakainfo.com. I live in India and I love to write tutorials and tips that can help to other artisan, a Passionate Blogger, who love to share the informative content on PHP, JavaScript, jQuery, Laravel, CodeIgniter, VueJS, AngularJS and Bootstrap from the early stage.