adding hero icons

This commit is contained in:
F4ilji
2025-05-15 15:59:12 +05:00
parent 0314febda2
commit f1fd06beb3
344 changed files with 1072 additions and 1 deletions
@@ -0,0 +1,19 @@
<?php
namespace App\Containers\Article\UI\CLI\Commands;
use App\Jobs\ImportApiDataPost;
use App\Ship\Abstracts\Commands\ConsoleCommand as AbstractConsoleCommand;
class TransferPostsToNewTable extends AbstractConsoleCommand
{
protected $signature = 'import:api';
protected $description = 'Импортировать данные из статического SQL файла в базу данных';
public function handle()
{
ImportApiDataPost::dispatch();
}
}