📜  变形关系 laravel - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:19.800000             🧑  作者: Mango

代码示例1
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',
]);