ispt4.0_laravel/vendor/yajra/laravel-datatables-buttons/src/Contracts/DataTableButtons.php
ygbanzato d7e3a725ac Test to use snappy pdf, but only with Dompdf were we able to make the reports.
Create a reporting system, in which reporting by Ambit has already been completed.
2024-01-09 12:09:27 +00:00

35 lines
496 B
PHP

<?php
namespace Yajra\DataTables\Contracts;
interface DataTableButtons
{
/**
* Export to excel file.
*
* @return mixed
*/
public function excel();
/**
* Export to CSV file.
*
* @return mixed
*/
public function csv();
/**
* Export to PDF file.
*
* @return mixed
*/
public function pdf();
/**
* Display printer friendly view.
*
* @return mixed
*/
public function printPreview();
}