Build functions/ jobs for data_pool and transformation

This commit is contained in:
2025-11-17 15:27:21 +01:00
parent 46820e9515
commit 976af0f2e6
9 changed files with 1417 additions and 26 deletions
@@ -0,0 +1,30 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class RebuildFromDataPoolCommand extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'app:rebuild-from-data-pool-command';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';
/**
* Execute the console command.
*/
public function handle()
{
//
}
}