| 123456789101112131415161718192021 |
- <?php
- namespace App\Services;
- use App\Models\Product;
- class ExportService
- {
- public function handle(): string
- {
- $products = Product::cursor();
- foreach ($products as $product) {
- dump($product->id);
- }
- return 'path';
- }
- }
|