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.
		
		
		
		
			
				
					25 lines
				
				453 B
			
		
		
			
		
	
	
					25 lines
				
				453 B
			| 
								 
											7 months ago
										 
									 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace App\Exports;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								use App\Models\User;
							 | 
						||
| 
								 | 
							
								use Maatwebsite\Excel\Concerns\FromCollection;
							 | 
						||
| 
								 | 
							
								use Maatwebsite\Excel\Concerns\WithHeadings;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								class UsuariosExport implements FromCollection, WithHeadings
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    public function collection()
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        return User::select('id', 'name', 'email')->get();
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    public function headings(): array
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        return [
							 | 
						||
| 
								 | 
							
								            'ID',
							 | 
						||
| 
								 | 
							
								            'Nombre',
							 | 
						||
| 
								 | 
							
								            'Email'
							 | 
						||
| 
								 | 
							
								        ];
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |