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.
23 lines
557 B
23 lines
557 B
<?php
|
|
|
|
namespace App\Exports;
|
|
|
|
use App\Models\Despartamento; // Asegúrate de que el modelo esté correctamente importado
|
|
use Maatwebsite\Excel\Concerns\FromCollection;
|
|
use Maatwebsite\Excel\Concerns\WithHeadings;
|
|
|
|
class DespartamentosExport implements FromCollection, WithHeadings
|
|
{
|
|
public function collection()
|
|
{
|
|
return Despartamento::where('eliminado', 0)->get(); // Obtiene todos los departamentos activos
|
|
}
|
|
|
|
public function headings(): array
|
|
{
|
|
return [
|
|
'ID',
|
|
'Departamento'
|
|
];
|
|
}
|
|
}
|