Laravel hasOneThrough Eloquent Relationship Tutorial Example – onlinecode

Laravel hasOneThrough Eloquent Relationship Tutorial Example – onlinecode

In this post we will give you information about Laravel hasOneThrough Eloquent Relationship Tutorial Example – onlinecode. Hear we will give you detail about Laravel hasOneThrough Eloquent Relationship Tutorial Example – onlinecodeAnd how to use it also give you demo for it if it is necessary.

In this tutorial, today we discuss laravel many to many Eloquent relationships. Eloquent ORM means Object-relational Mapping and laravel provides a beautiful ActiveRecord structure. so we can easy to interact with the application database. let’s start about hasOneThrough eloquent relationship.

The “HasOneThrough” relationship links models through a single intermediate relation. For example, if each category has one product, and each product is associated with one product order record, then the category model may access the order through the product.

here, see below database structure.

Products

– id

– category_id

– title

Categories

– id

– name

Orders

– id

– product_id

Setting Database Configuration

After complete installation of laravel. we have to database configuration. now we will open the .env file and change the database name, username, password in the .env file. See below changes in a .env file.

PHP
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=Enter_Your_Database_Name(has_one_through_relation)
DB_USERNAME=Enter_Your_Database_Username(root)
DB_PASSWORD=Enter_Your_Database_Password(root)

Create Table using migration

Now, We need to create a migration. so we will below command using create the products, categories and orders table migration.

PHP
php artisan make:migration create_products_table --create=products
php artisan make:migration create_categories_table --create=categories
php artisan make:migration create_orders_table --create=orders

After complete migration. we need below changes in the database/migrations/create_products_table, database/migrations/create_categories_table and database/migrations/create_orders_table file.

create_products_table.php

PHP
<?php
use IlluminateSupportFacadesSchema;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateDatabaseMigrationsMigration;
class CreateProductsTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('products', function (Blueprint $table) {
            $table->bigIncrements('id');
			$table->bigInteger('category_id')->unsigned()->index();
            $table->foreign('category_id')->references('id')->on('categories')->onDelete('cascade');
            $table->string('title');
            $table->timestamps();
        });
    }
    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('products');
    }
}
?>

create_categories_table.php

PHP
<?php
use IlluminateSupportFacadesSchema;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateDatabaseMigrationsMigration;
class CreateCategoriesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('categories', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->string('name');
            $table->timestamps();
        });
    }
    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('categories');
    }
}
?>

create_orders_table.php

PHP
<?php
use IlluminateSupportFacadesSchema;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateDatabaseMigrationsMigration;
class CreateOrdersTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('orders', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->integer('product_id')->unsigned();
            $table->foreign('product_id')->references('id')->on('products')->onDelete('cascade');
            $table->timestamps();
        });
    }
    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('orders');
    }
}
?>

Run the below command. after the changes above file.

PHP
php artisan migrate

Create Model

Here below command help through we will create the Product, Category and Order model. we will also use “hasOneThrough()” method relations based on the foreign key between any two table.

PHP
php artisan make:model Product
php artisan make:model Category
php artisan make:model Order

Product.php

PHP
<?php

namespace App;
use IlluminateDatabaseEloquentModel;

class Product extends Model
{
    public function orders()
    {
        //return $this->hasOneThrough('AppOrder', 'AppProduct');
		
		
		return $this->hasOneThrough(
            'AppOrder',
            'AppProduct',
            'category_id', // Foreign key on products table...
            'product_id', // Foreign key on orders table...
            'id', // Local key on categories table...
            'id' // Local key on products table...
        );
    }
}

?>

Category.php

PHP
<?php
namespace App;
use IlluminateDatabaseEloquentModel;
class Category extends Model
{
    
}
?>

Order.php

PHP
<?php
 
namespace App;
 
use IlluminateDatabaseEloquentModel;
 
class Order extends Model
{
    //
}

?>

Route and Controller

We have to need put below code route in routes/web.

PHP
<?php
 
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
 
Route::get('/', function () {
    return view('welcome');
});
 
Route::get('product','productsController@index');

?>

Here below command help to create the product controller.

PHP
php artisan make:controller ProductsController

ProductsController.php

PHP
<?php
namespace AppHttpControllers;
use AppProduct;
use AppCategory;
use IlluminateHttpRequest;
class ProductsController extends Controller
{
    /**
     * Display a listing of the resource.
     *
     * @return IlluminateHttpResponse
     */
    public function index()
    {
        $product = Product::find(1);	
        $supplier_one = $product->orders;
        //dd($supplier_one);
    }

}
?>

Please follow and like us:

Hope this code and post will helped you for implement Laravel hasOneThrough Eloquent Relationship Tutorial Example – onlinecode. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

Leave a Comment

Your email address will not be published. Required fields are marked *

5  +  1  =  

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US