ExportService.php 279 B

123456789101112131415161718192021
  1. <?php
  2. namespace App\Services;
  3. use App\Models\Product;
  4. class ExportService
  5. {
  6. public function handle(): string
  7. {
  8. $products = Product::cursor();
  9. foreach ($products as $product) {
  10. dump($product->id);
  11. }
  12. return 'path';
  13. }
  14. }