24 lines
512 B
PHP
24 lines
512 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class CompraResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'fecha' => $this->fecha,
|
|
'proveedor_id' => $this->proveedor_id,
|
|
'total' => $this->total,
|
|
'estado' => $this->estado,
|
|
];
|
|
}
|
|
}
|