whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
Modules
/
Payroll
/
Console
/
Upload File:
files >> /home/kckglobal/www/portal/Modules/Payroll/Console/ActivateModuleCommand.php
<?php namespace Modules\Payroll\Console; use App\Models\Company; use Illuminate\Console\Command; use Modules\Payroll\Entities\PayrollSetting; class ActivateModuleCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $name = 'payroll:activate'; /** * The console command description. * * @var string */ protected $description = 'Add all the module settings of asset module'; /** * Execute the console command. * * @return mixed */ public function handle() { $companies = Company::all(); foreach ($companies as $company) { PayrollSetting::addModuleSetting($company); } } }
Copyright ©2021 || Defacer Indonesia