Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F117758751
WalletAddTransaction.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None
WalletAddTransaction.php
View Options
<?php
namespace
App\Console\Commands
;
use
Illuminate\Console\Command
;
class
WalletAddTransaction
extends
Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected
$signature
=
'wallet:add-transaction {wallet} {qty} {--message=}'
;
/**
* The console command description.
*
* @var string
*/
protected
$description
=
'Add a transaction to a wallet'
;
/**
* Create a new command instance.
*
* @return void
*/
public
function
__construct
()
{
parent
::
__construct
();
}
/**
* Execute the console command.
*
* @return mixed
*/
public
function
handle
()
{
$wallet
=
\App\Wallet
::
find
(
$this
->
argument
(
'wallet'
));
if
(!
$wallet
)
{
return
1
;
}
$qty
=
(
int
)
$this
->
argument
(
'qty'
);
$message
=
$this
->
option
(
'message'
);
if
(
$qty
<
0
)
{
$wallet
->
debit
(
$qty
,
$message
);
}
else
{
$wallet
->
credit
(
$qty
,
$message
);
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Apr 4 2026, 9:56 AM (4 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18823574
Default Alt Text
WalletAddTransaction.php (1 KB)
Attached To
Mode
rK kolab
Attached
Detach File
Event Timeline