Laravel
181
Sumit Suryavanshi
11-11-2020
Laravel 8 export excel and csv from database.,In this example, you will learn how to export Excel or CSV data in the file from a database into the laravel web application using the maatwebsite package with an example.
When you work with any Laravel web application. So you may need to get data from MySQL database in laravel web application with many different formats like CSV and Excel.
First Step, you need to download or install laravel web application new setup on your local machine. you can use the following command to download or install laravel application new setup:
composer create-project laravel/laravel laravel-export –-prefer-dist
If you want to install a specific version of laravel, you can follow the following tutorial
https://w3alert.com/laravel-tutorial/laravel-install-on-windows-ubuntu-with-composer
After that, you will set up the database credentials in .env file. So open your .env file and update database credentials following:
DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=database_name DB_USERNAME=root DB_PASSWORD=root
Next, go to command prompt and run the following command:
php artisan migrate OR php artisan migrate:fresh
This php artisan migrate command creates a table in your database.
Next, you need to Install Maatwebsite Package in your laravel web applications. So go to your command prompt and run the following command to install the latest laravel Install Maatwebsite Package:
composer require maatwebsite/excel
When the package of Maatwebsite Package is installed. After that this package will have to be registered in the Laravel web application of the app. For this, you can register this package of instruction follow below.
App_root_directory/config/app.php
'providers' => [ Maatwebsite\Excel\ExcelServiceProvider::class, ], 'aliases' => [ 'Excel' => Maatwebsite\Excel\Facades\Excel::class, ]
When you will register the package of Maatwesite. After that, the package will have to be published with the command following command.
php artisan vendor:publish
Next, we need to generate fake data into the MySQL database table by using php artisan command. So go to your command prompt (cli) and then go to your project root directory. After that run the following command:
php artisan tinker
After run the php artisan tinker. Use the following command. This command will add 200 fake data in your MySQL database table users:
>>> factory(App\User::class, 200)->create();
Next step, go to routes/web.php file and update the following routes into your file:
use App\Http\Controllers\ExportController; Route::get('export-example', [ImportController::class, 'index']); Route::get('export', [ImportController::class, 'export']);
Here, you can create an export class by using the following PHP artisan command. So go to your command prompt type the following command:
php artisan make:export ExportUsers --model=User
After that, go to app/Exports/ExportUsers.php and your created export class looks like:
<?php namespace App\Exports; use App\Models\User; use Maatwebsite\Excel\Concerns\FromCollection; class ExportUsers implements FromCollection { /** * @return \Illuminate\Support\Collection */ public function collection() { return User::get(); } }
Now, you need to generate or create a controller file using php artisan command, so use the php artisan make:controller command and generate/create a new controller file:
php artisan make:controller ExportController
In this controller file, we will create some new methods. This method will also show export button and export data into mysql database..
After that, go to App/Http/Controllers/ directory and find the created ExportController file and update the following code into your file:
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Exports\ExportUsers; use Maatwebsite\Excel\Facades\Excel; class ExportController extends Controller { /** * @return \Illuminate\Support\Collection */ public function index() { return view('export'); } /** * @return \Illuminate\Support\Collection */ public function export() { return Excel::download(new ExportUsers, 'users.xlsx'); } }
Next, you need to create a blade views file, so go resource/views directory and create the following blade views file.
Go to resource/views/ then create a new file name export.blade.php and update the following code:
<!DOCTYPE html> <html> <head> <title>Laravel Export Excel to Database - w3alert.com</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" /> </head> <body> <div class="container"> <div class="card mt-4"> <div class="card-header"> Laravel 7 Export Excel to Database - w3alert.com </div> <div class="card-body"> <a class="btn btn-info" href="{{ url('export') }}">Export File</a> </div> </div> </div> </body> </html>
You can use the following command artisan command to start the development server:
php artisan serve
The final step, go to your browser and type the below-given URL into your browser:
http://localhost:8000/export-sample OR http://localhost/laravel-export/public/export-sample