up
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?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,
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user