35 lines
766 B
PHP
35 lines
766 B
PHP
<?php
|
|
|
|
namespace App\Commands;
|
|
|
|
use App\Component\Models\Settings;
|
|
use App\Console\Commands\HRCCommand;
|
|
use App\Console\Commands\HRCCommandInterface;
|
|
|
|
class GETSettings extends HRCCommand implements HRCCommandInterface {
|
|
protected $signature = 'getsettings';
|
|
|
|
public function command($input, $output = null) {
|
|
if (isset($input['code'])) {
|
|
$setting = Settings::where('code', $input['code'])->first();
|
|
if ($setting) {
|
|
return [
|
|
'status' => 'success',
|
|
'code' => $setting['code'],
|
|
'value' => $setting['value'],
|
|
];
|
|
} else {
|
|
return [
|
|
'status' => 'error',
|
|
'more' => 'Setting not found',
|
|
];
|
|
}
|
|
} else {
|
|
$settings = Settings::all();
|
|
return [
|
|
'status' => 'success',
|
|
'settings' => $settings,
|
|
];
|
|
}
|
|
}
|
|
} |