22 lines
		
	
	
	
		
			506 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			506 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Resources;
 | |
| 
 | |
| use Illuminate\Http\Resources\Json\JsonResource;
 | |
| 
 | |
| class GrupoDeCompraReducido extends JsonResource
 | |
| {
 | |
|     /**
 | |
|      * Transform the resource into an array.
 | |
|      *
 | |
|      * @param  \Illuminate\Http\Request  $request
 | |
|      * @return array
 | |
|      */
 | |
|     public function toArray($request): array {
 | |
|         return [
 | |
|             'id' => $this->id,
 | |
|             'nombre' => $this->nombre,
 | |
|             'devoluciones_habilitadas' => $this->devoluciones_habilitadas,
 | |
|         ];
 | |
|     }
 | |
| }
 |