Skip to content

Instantly share code, notes, and snippets.

@knorthfield
Last active January 10, 2019 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save knorthfield/99f43de2ae7ab8beaff706cc47548c97 to your computer and use it in GitHub Desktop.
Save knorthfield/99f43de2ae7ab8beaff706cc47548c97 to your computer and use it in GitHub Desktop.
Laravel Parse Pasted Spreadsheet
<?php
collect(explode("\n", request()->spreadsheet))
->map(function($row){
return str_getcsv($row, "\t");
})
->each(function($cell) {
// $cell[0], $cell[1] etc
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment