Skip to content

Instantly share code, notes, and snippets.

View brytey2k's full-sized avatar

Bright Nkrumah brytey2k

View GitHub Profile
@brytey2k
brytey2k / CreateGeneralExportFileJob.php
Last active February 11, 2025 19:32
A simple Laravel job that can help you export data through CSV from a database with millions of rows.
<?php
namespace App\Jobs;
use App\Models\GeneralExport;
use Storage;
class CreateGeneralExportFileJob implements ShouldQueue
{