src/Console/Commands/PublishCommand.php
<?php
declare(strict_types=1);
namespace Rinvex\Attributes\Console\Commands;
use Illuminate\Console\Command;
class PublishCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'rinvex:publish:attributes {--f|force : Overwrite any existing files.} {--r|resource=* : Specify which resources to publish.}';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Publish Rinvex Attributes Resources.';
/**
* Execute the console command.
*
* @return void
*/
public function handle(): void
{
$this->alert($this->description);
collect($this->option('resource') ?: ['config', 'migrations'])->each(function ($resource) {
$this->call('vendor:publish', ['--tag' => "rinvex/attributes::{$resource}", '--force' => $this->option('force')]);
});
$this->line('');
}
}