Featured image of post Laravel Eloquent 自定義主鍵(primary-key)

Laravel Eloquent 自定義主鍵(primary-key)

intro

可參考 文件

main

Laravel 預設的 pKey 是 id
在 Model 裡加入 $primaryKey 參數,就可以使用這個自定義 pKey,
如此一來後續的關聯就不用每次都定義關聯的 key

檔案: app\Models\Product.php

1
2
3
4
class Product extends Model
{
    protected $primaryKey = 'product_id';
}
Licensed under CC BY-NC-SA 4.0
comments powered by Disqus
Built with Hugo
Theme Stack designed by Jimmy