21 lines
431 B
PHP
21 lines
431 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,
|
|
];
|
|
}
|
|
}
|