Files
elcaribe/desarrollo/app/Exports/NfcVoucherExportsCollection.php

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();
}
}