nikhil_lu210's avatar

How to Upload and Show CSV File Data into Laravel ?

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...?

0 likes
3 replies
petrit's avatar
    $file = Storage::get('file.csv');
        while ( ($line= fgetcsv($file, 1000, ",")) !==FALSE )
        {
             //$name = $line[0];
             //store data to database,...
        }

nikhil_lu210's avatar

Can You Please Briefly Describe Full Process ( Model, Controller, Migration, Route, View )...? @

Please or to participate in this conversation.