Skip to content

Instantly share code, notes, and snippets.

@vuejsdevelopers
Created January 8, 2019 18:29
Show Gist options
  • Save vuejsdevelopers/454e5f212f8d551b2ea6e91ba66cd11b to your computer and use it in GitHub Desktop.
Save vuejsdevelopers/454e5f212f8d551b2ea6e91ba66cd11b to your computer and use it in GitHub Desktop.
Bad UX in Web Apps that Perform Intensive Tasks (and How to Avoid it with Queues) - Snippet 05
public function store(Request $request)
{
if ($request->hasFile('csv')) {
ProcessCSV::dispatch($request->file("csv"));
return response("File received for processing!", 202);
} else {
return response("No file provided.", 400);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment