You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
556 B
30 lines
556 B
<?php
|
|
|
|
namespace App\Exports;
|
|
|
|
use Maatwebsite\Excel\Concerns\FromCollection;
|
|
use Maatwebsite\Excel\Concerns\WithHeadings;
|
|
|
|
class CapacidadesExport implements FromCollection, WithHeadings
|
|
{
|
|
protected $capacidades;
|
|
|
|
public function __construct($capacidades)
|
|
{
|
|
$this->capacidades = $capacidades;
|
|
}
|
|
|
|
public function collection()
|
|
{
|
|
return $this->capacidades;
|
|
}
|
|
|
|
public function headings(): array
|
|
{
|
|
return [
|
|
'ID',
|
|
'Cantidad',
|
|
'Fecha de Creación'
|
|
];
|
|
}
|
|
}
|