🔄 در حال انجام: تست دستی Filament ⏸️ بلاک: مهاجرت ۳۹۵۰ رکورد (منتظر فایل اکسل اصلاحشده) ⏸️ بلاک: پلاگین وردپرس (بعد از تست کامل API)
22 lines
441 B
PHP
22 lines
441 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Imports\DebugImport;
|
|
use Illuminate\Console\Command;
|
|
use Maatwebsite\Excel\Facades\Excel;
|
|
|
|
class DebugImportCommand extends Command
|
|
{
|
|
protected $signature = 'ifnex:debug:import {path}';
|
|
protected $description = 'Debug import';
|
|
|
|
public function handle(): int
|
|
{
|
|
$path = $this->argument('path');
|
|
Excel::import(new DebugImport(), $path);
|
|
|
|
return 0;
|
|
}
|
|
}
|