Level 20
$file = Storage::get('file.csv');
while ( ($line= fgetcsv($file, 1000, ",")) !==FALSE )
{
//$name = $line[0];
//store data to database,...
}
I Want to Upload this CSV file ( https://www.sendspace.com/file/wwg8e3 ) into my laravel project. And wanna show the data into this ( http://uploadpot.com/1ovzztebwxz9 ) database table...
Can anyone please help me how can I upload and read the CSV file data...?
Please or to participate in this conversation.