laravel morph relation code example
Example 1: laravel polymorphic model
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Image extends Model
{
public function imageable()
{
return $this->morphTo();
}
}
class Post extends Model
{
public function image()
{
return $this->morphOne('App\Image', 'imageable');
}
}
class User extends Model
{
public function image()
{
return $this->morphOne('App\Image', 'imageable');
}
}
Example 2: morph relation laravel
You may register the morphMap in the boot function of your
App\Providers\AppServiceProvider class or create a separate service provider
if you wish.
use Illuminate\Database\Eloquent\Relations\Relation;
Relation::morphMap([
'post' => 'App\Models\Post',
'video' => 'App\Models\Video',
]);
Example 3: laravel poly morphic relationship
class Mechanic extends Model
{
public function carOwner()
{
return $this->hasOneThrough(
'App\Owner',
'App\Car',
'mechanic_id',
'car_id',
'id',
'id'
);
}
}