Please prefix your issue with one of the following: [BUG] [PROPOSAL] [QUESTION].
Laravel 5.4 - Excel version 2.1
Dispaying 10 items of the feed
Doesnt kick into the closure
Hi, im trying to chunk a Excel file but when i use a dd on the $data, it doesnt get reached. Any clue why?
\Excel::filter( 'chunk' )
->load( '/var/www/dev.local/storage/app/stock.csv' )
->chunk( '10', function ( $data ) {
dd( __LINE__ . ':[' . __FILE__ . ']', $data );
} );
It's being queued, you have to run your queue worker.
Hi Patrick,
Thats correct, it is getting queued! Thanks for your quick response!
Most helpful comment
It's being queued, you have to run your queue worker.