We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80379d0 commit 1211deeCopy full SHA for 1211dee
src/Models/Wallet.php
@@ -167,16 +167,6 @@ public function getCurrencyAttribute(): string
167
return $this->meta['currency'] ?? Str::upper($this->slug);
168
}
169
170
- /**
171
- * returns all the receiving transfers to this wallet.
172
- *
173
- * @return HasMany<Transfer>
174
- */
175
- public function receivedTransfers(): HasMany
176
- {
177
- return $this->hasMany(config('wallet.transfer.model', Transfer::class), 'to_id');
178
- }
179
-
180
protected function initializeMorphOneWallet(): void
181
{
182
$this->uuid ??= app(UuidFactoryServiceInterface::class)->uuid4();
0 commit comments