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