Change default primary key in Eloquent

前端 未结 6 444
长发绾君心
长发绾君心 2020-12-05 01:58

Can I change Eloquent model primary key.

I want to set primary key for example admin_id instead of \'id\'?

I know I can change table name for m

6条回答
  •  萌比男神i
    2020-12-05 02:00

    To assign a primary key you should..->

    class User extends Eloquent {
    
        protected $primaryKey='admin_id';
    
     }
    

提交回复
热议问题