snipe-it/app/Console/Commands/RemoveExplicitEols.php
2024-07-10 10:57:47 -07:00

48 lines
1.1 KiB
PHP

<?php
namespace App\Console\Commands;
use App\Models\Asset;
use App\Models\AssetModel;
use Illuminate\Console\Command;
class RemoveExplicitEols extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'snipeit:remove-explicit-eols {--model_name=}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'remove explicit eols on assets with selected model so they may inherit the asset model eol';
/**
* Execute the console command.
*/
public function handle()
{
$assetModel= AssetModel::where('name', '=', $this->option('model_name'))->first();
if($assetModel){
$assets = Asset::where('model_id', '=', $assetModel->id)->get();
foreach ($assets as $asset) {
$asset->eol_explicit = 0;
$asset->asset_eol_date = null;
$asset->save();
}
$this->info($assets->count().' Assets updated successfully');
}
else {
$this->error('Asset model not found');
}
}
}