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 May 16, 2024 12:12
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
{