| 123456789101112131415161718 |
- <?php
- namespace App\Jobs;
- use App\Services\AssociadoImportService;
- class SyncAssociadosJob extends BaseImportJob
- {
- protected function getImportType(): string
- {
- return 'associado';
- }
- protected function runSync(string $filePath): array
- {
- return app(AssociadoImportService::class)->syncFromExcel($filePath);
- }
- }
|