Download Student Applications as PDF (background process) and Excel#200
Open
betsyecastro wants to merge 29 commits intodevelopfrom
Open
Download Student Applications as PDF (background process) and Excel#200betsyecastro wants to merge 29 commits intodevelopfrom
betsyecastro wants to merge 29 commits intodevelopfrom
Conversation
…and adds docblocks
…nto bulk-export-student-apps-pdf
b05ac6f to
9b3f3de
Compare
8ba4fce to
dc5330d
Compare
dc5330d to
a13215e
Compare
shukla-m
approved these changes
Feb 12, 2026
shukla-m
left a comment
There was a problem hiding this comment.
Hi @betsyecastro, this works great! I tested both bulk PDF downloads (with and without filters) and individual PDF download and everything seems to work as expected. I added a few comments for minor changes. Let me know if you have any questions. Thanks.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds support in the profile-students view for downloading both individual and multiple student applications. The "Download" option allows downloading a single application, while "Download Student Applications" enables exporting filtered applications by filing status in Excel or PDF formats to address issue #187
The job that generates the PDF file in the background, receives a
PdfGeneratorService- an implementation of thePdfGenerationContractinterface to support multiple PDF generation methods Browsershot, AWS Lambda, and container-based).The queue connection has been changed from the sync driver, which executes jobs synchronously during the request, to the database driver, which queues jobs in the database. These jobs are then processed asynchronously by a queue worker.
Requirements:
CACHE_DRIVER=redisREDIS_PORT=6379QUEUE_CONNECTION=databasecomposer installphp artisan queue:workTo clean up temporary files:
php artisan files:clean-up-pdfs. This command removes timestamped folders in the tmp/reports directory that are older than the specified threshold (default: 2 hours). Options:•
--root=tmp/reportsRoot directory where timestamped folders are stored•
--hours=2Deletes folders older than the specified number of hours•
--disk=Filesystem disk to use (defaults to FILESYSTEM_DISK)Replaces PR #192.