csv をアップロードして csv データをデータベースにインポートしようとしていますが、正常に動作しますが、データベースの整数フィールドで問題に直面しています。
私のcsvファイルには製品名と数量フィールドがあります
Excel::filter('chunk')->load($uploaded_file)->chunk(100, function($results) {
foreach($results as $result) {
echo $result->quantity; # When I try to insert it is 0 because it is string
# I tried typecasting (int)$result->quantity; it leads to 0
# And also intval($result->quantity); this too leads to 0
}
});