Download the PHP package yajra/laravel-datatables-export without Composer

On this page you can find all versions of the php package yajra/laravel-datatables-export. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-datatables-export

Laravel DataTables Export Plugin

Laravel 11 Latest Stable Version Continuous Integration Static Analysis Total Downloads License

This package is a plugin of Laravel DataTables for handling server-side exporting using Queue, OpenSpout and Livewire.

Requirements

Documentations

Laravel Version Compatibility

Laravel Package
8.x 0.x
9.x 1.x
10.x 10.x
11.x 11.x

Quick Installation

composer require yajra/laravel-datatables-export:^11.0

The package also requires batch job:

Service Provider (Optional since Laravel 5.5+)

Yajra\DataTables\ExportServiceProvider::class

Configuration and Assets (Optional)

$ php artisan vendor:publish --tag=datatables-export --force

Usage

  1. Add the export-button livewire component on your view file that uses dataTable class.

  2. On your DataTable class, use WithExportQueue

  3. Run your queue worker. Ex: php artisan queue:work

Purging exported files

On app\Console\Kernel.php, register the purge command

Export Filename

You can set the export filename by setting the property.

Export Type

You can set the export type by setting the property to csv or xlsx. Default value is xlsx.

Set Excel Sheet Name

Option 1: You can set the Excel sheet name by setting the property.

Option 2: You can also set the Excel sheet name by overwriting the method.

Formatting Columns

You can format the column by setting it via Column definition on you DataTable service class.

The format above will treat mobile numbers as text with leading zeroes.

Numeric Fields Formatting

The package will auto-detect numeric fields and can be used with custom formats.

Date Fields Formatting

The package will auto-detect date fields when used with a valid format or is a DateTime instance.

Valid Date Formats

Valid date formats can be adjusted on datatables-export.php config file.

Force Numeric Field As Text Format

Option to force auto-detected numeric value as text format.

Auto Download

Option to automatically download the exported file.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of laravel-datatables-export with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
ext-json Version *
livewire/livewire Version ^2.11.2|^3.0.1
openspout/openspout Version ^4.12.1
phpoffice/phpspreadsheet Version ^1.27
yajra/laravel-datatables-buttons Version ^11.0
pestphp/pest Version ^2.34
pestphp/pest-plugin-laravel Version ^2.3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package yajra/laravel-datatables-export contains the following files

Loading the files please wait ....