Posted inLaravel

Laravel 5/6/7 Import & Export data to Excel CSV using maatwebsite

Today, We want to share with you Laravel 5/6/7 Import & Export data to Excel CSV using maatwebsite example.In this post we will show you import excel file in laravel, hear for import and export csv file in laravel we will give you demo and example for implement.In this post, we will learn about laravel 5.6 import csv to database with an example.

Laravel 5/6/7 Import & Export data to Excel CSV using maatwebsite example

There are the Following The simple About laravel csv import package Full Information With Example and source code.

As I will cover this Post with live Working example to develop laravel maatwebsiteexcel export, so the laravel excel 3.1 export example is used for this example is following below.

Laravel is a web application framework with expressive, elegant syntax.The PHP Framework for Web Artisans,freeing you to create without sweating the small things. CRUD Operation With Server Side.

Keywords : Laravel 5 import export to excel and csv using maatwebsite example, laravel maatwebsiteexcel export, laravel excel 3.1 import example, laravel excel export example, laravel excel 3.1 export example, laravel csv import package, import and export csv file in laravel, laravel 5.6 import csv to database, import excel file in laravel

Phase 1: Installation

composer.json


//Laravel 5
"maatwebsite/excel": "~2.1.0"

//Laravel 4
"maatwebsite/excel": "~1.3"

Then, run command composer update

config/app.php

'providers' => [
	....

	'Maatwebsite\Excel\ExcelServiceProvider',

],

'aliases' => [

	....

	'Excel' => 'Maatwebsite\Excel\Facades\Excel',

],

Config

//Laravel 5 then fire following command:
php artisan vendor:publish

//Laravel 4 then fire following command:
php artisan config:publish maatwebsite/excel

Phase 3: Make a Table and Model

php artisan make:migration create_tasks_table

database/migrations

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateTasksTable extends Migration
{
   public function up()
   {
       Schema::create('tasks', function (Blueprint $table) {
           $table->increments('id');
           $table->string('title');
           $table->text('description');
           $table->timestamps();
       });
   }
   public function down()
   {
       Schema::drop("tasks");
   }
}

app/Task.php

namespace App;
use Illuminate\Database\Eloquent\Model;
class Task extends Model
{
   public $fillable = ['title','description'];
}

Phase 3: Make a Route

app/Http/routes.php

Route::get('importExport', 'MaatwebsiteBdayWishController@importExport');
Route::get('forceExcelFileLoad/{type}', 'MaatwebsiteBdayWishController@forceExcelFileLoad');
Route::post('excelDataImp', 'MaatwebsiteBdayWishController@excelDataImp');

Phase 4: Make a Controller

app/Http/Controllers/MaatwebsiteBdayWishController.php

use Input;
use App\Task;
use DB;
use Excel;
class MaatwebsiteBdayWishController extends Controller
{
	public function importExport()
	{
		return view('importExport');
	}
	public function forceExcelFileLoad($type)
	{
		$data = Task::get()->toArray();
		return Excel::create('pakainfo_example', function($excel) use ($data) {
			$excel->sheet('mySheet', function($sheet) use ($data)
	        {
				$sheet->fromArray($data);
	        });
		})->download($type);
	}
	public function excelDataImp()
	{
		if(Input::hasFile('import_file')){
			$path = Input::file('import_file')->getRealPath();
			$data = Excel::load($path, function($reader) {
			})->get();
			if(!empty($data) && $data->count()){
				foreach ($data as $key => $value) {
					$insert[] = ['title' => $value->title, 'description' => $value->description];
				}
				if(!empty($insert)){
					DB::table('tasks')->insert($insert);
					dd('Insert Record successfully.');
				}
			}
		}
		return back();
	}
}

Phase 5: Make a View

importExport.blade.php



	Import - Export Laravel 5
	


	
	


Web Programming Tutorials Example with Demo

Read :

Summary

You can also read about AngularJS, ASP.NET, VueJs, PHP.

I hope you get an idea about laravel excel 3.1 import example.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.

I am Jaydeep Gondaliya , a software engineer, the founder and the person running Pakainfo. I'm a full-stack developer, entrepreneur and owner of Pakainfo.com. I live in India and I love to write tutorials and tips that can help to other artisan, a Passionate Blogger, who love to share the informative content on PHP, JavaScript, jQuery, Laravel, CodeIgniter, VueJS, AngularJS and Bootstrap from the early stage.

Leave a Reply

Your email address will not be published. Required fields are marked *

We accept paid guest Posting on our Site : Guest Post Chat with Us On Skype