Page MenuHomePhorge

WalletAddTransaction.php
No OneTemporary

Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None

WalletAddTransaction.php

<?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

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)

Event Timeline