Files
elcaribe/desarrollo2/app/Exports/NfcVoucherExportsCollection.php
2023-08-23 17:33:44 -04:00

18 lines
309 B
PHP

<?php
namespace App\Exports;
use App\Models\NfcVoucher;
use Maatwebsite\Excel\Concerns\FromCollection;
class NfcVoucherExportsCollection implements FromCollection
{
/**
* @return \Illuminate\Support\Collection
*/
public function collection()
{
return NfcVoucher::all();
}
}