payment providers and some stan

This commit is contained in:
2025-10-31 01:13:04 +05:00
parent 11f99caf42
commit 834527647d
11 changed files with 232 additions and 121 deletions

View File

@@ -77,4 +77,20 @@ class Branch extends Model
{
return $this->belongsToMany(User::class);
}
/**
* Get billing username
*/
public function billingUsername(): string
{
return $this->billing_username ?: '-';
}
/**
* Get billing password
*/
public function billingPassword(): string
{
return $this->billing_password ?: '-';
}
}