소스 검색

Fixed redeclared method

Samson Mutunga 1 년 전
부모
커밋
d1c5d9dcf9
1개의 변경된 파일0개의 추가작업 그리고 5개의 파일을 삭제
  1. 0 5
      app/Models/Point.php

+ 0 - 5
app/Models/Point.php

@@ -8,11 +8,6 @@ class Point extends Model
 {
     protected $table = 'point';
 
-    public function client()
-    {
-        return $this->hasOne(Client::class, 'id', 'client_id');
-    }
-
     public function creatorPro()
     {
         return $this->hasOne(Pro::class, 'id', 'created_by_pro_id');