Page MenuHomePhorge

WalletDiscount.php
No OneTemporary

Authored By
Unknown
Size
1 KB
Referenced Files
None
Subscribers
None

WalletDiscount.php

<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class WalletDiscount extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'wallet:discount {wallet} {discount}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Apply a discount 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::where('id', $this->argument('wallet'))->first();
if (!$wallet) {
return 1;
}
// FIXME: Using '0' for delete might be not that obvious
if ($this->argument('discount') === '0') {
$wallet->discount()->dissociate();
} else {
$discount = \App\Discount::find($this->argument('discount'));
if (!$discount) {
return 1;
}
$wallet->discount()->associate($discount);
}
$wallet->save();
}
}

File Metadata

Mime Type
text/x-php
Expires
Sat, Apr 4, 4:14 AM (2 h, 56 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18822542
Default Alt Text
WalletDiscount.php (1 KB)

Event Timeline