|
@@ -41,4 +41,12 @@ class Client extends Model
|
|
|
public function careMonth(){
|
|
|
return $this->hasOne(CareMonth::class, 'client_id', 'id');
|
|
|
}
|
|
|
+
|
|
|
+ public function medicareStatus(){
|
|
|
+ // $this->mcn_reject_reason_code = 'not part b';
|
|
|
+ return true ? true : (
|
|
|
+ // return $this->is_mcn_valid_number ? true : (
|
|
|
+ $this->mcn_reject_reason_code ? false : null
|
|
|
+ );
|
|
|
+ }
|
|
|
}
|