{{ $this->form }}
一键导入 与右上角「一键导入」相同操作
# 本地:从文件导入并生成 SQL
php artisan questions:import /绝对路径/题目.json

# 仅生成 SQL、不写本地库(适合只在服务器执行)
php artisan questions:import /path/to/x.json --sql-only

# 从本地库按 id 导出 SQL(默认不含 id,由服务器自增主键)
php artisan questions:export-sql --ids=101,102,103
# 若必须在目标库对齐原 id:
php artisan questions:export-sql --ids=101,102 --with-id
@if ($this->lastSqlPath)

{{ $this->lastSqlPath }}

@if ($this->lastMessage)

{{ $this->lastMessage }}

@endif
@endif