one-through-many
mechanics
    id - integer
    name - string
cars
    id - integer
    model - string
    mechanic_id - integer
owners
    id - integer
    name - string
    car_id - integerone-through-many
mechanics
    id - integer
    name - string
cars
    id - integer
    model - string
    mechanic_id - integer
owners
    id - integer
    name - string
    car_id - integerone-through-many
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Mechanic extends Model
{
    /**
     * Get the car's owner.
     */
    public function carOwner()
    {
        return $this->hasOneThrough(Owner::class, Car::class);
    }
}Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
