dev-master
9999999-devExport a collection of models to csv
MIT
The Development Requires
by Ralph Morris
laravel csv export
1.0.0
1.0.0.0Export a collection of models to csv
MIT
The Development Requires
by Ralph Morris
laravel csv export
Wallogit.com
2017 © Pedro Peláez
Export a collection of models to csv
Exporter is a package for Laravel that provides a simple csv export of any collection of models., (*1)
composer require ralphmorris/exporter
In your controller use:, (*2)
use RalphMorris\Exporter\Exporter;
Then inside your method a simple call could look like:, (*3)
public function export()
{
$users = User::get();
$exporter = new Exporter;
return $exporter->exportToCsv($users);
}
You can also optionally specify the filename by providing a second parameter., (*4)
return $exporter->exportToCsv($users, 'my-file-name.csv');
If you only want to export certain columns from your model simply include the ExportableColumnsTrait trait in your model class and define a protected property of $exportableColumns with an array of the fields you would like to be exportable., (*5)
For example:, (*6)
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
use RalphMorris\Exporter\ExportableColumnsTrait;
class User extends Model
{
use ExportableColumnsTrait;
/**
* The columns that are exportable to CSV
*
* @var array
*/
protected $exportableColumns = [
'name',
'email',
];
Then in your query simply call the query scope exportableColumns() as per the below example., (*7)
public function export()
{
$users = User::exportableColumns()->get();
$exporter = new Exporter;
return $exporter->exportToCsv($users);
}
Export a collection of models to csv
MIT
laravel csv export
Export a collection of models to csv
MIT
laravel csv export