argument('path'); if (!file_exists($path)) { $this->error("File not found: $path"); return 1; } $this->info('Starting historical shipments import...'); Excel::import(new HistoricalShipmentsImport(), $path); $this->info('Historical shipments import completed.'); return 0; } }