DealerLvl::class, 'order_completed_at' => 'datetime', ]; protected $fillable = [ 'user_id', 'lvl', 'order_id', 'total_amount', 'path', 'remark', 'order_completed_at', ]; public function user() { return $this->belongsTo(User::class, 'user_id'); } public function order() { return $this->belongsTo(DealerOrder::class, 'order_id'); } }