#development #laravel #php

Dispatching closure jobs after response can be a really nice way to do some cleanup 💅:

1$pdf->store('file.pdf');
2
3// Delete the file after the response has been sent
4dispatch(fn () => Storage::delete('file.pdf'))->afterResponse();
5
6return Zip::download('file.pdf');

source