partial update crud customer data

This commit is contained in:
arifal
2025-02-21 00:46:33 +07:00
parent 7a56735099
commit 5c4be7635b
20 changed files with 898 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
<?php
namespace App\Http\Resources;
use Illuminate\Http\Request;
use Illuminate\Http\Resources\Json\JsonResource;
class CustomersResource extends JsonResource
{
/**
* Transform the resource into an array.
*
* @return array<string, mixed>
*/
public function toArray(Request $request): array
{
return parent::toArray($request);
}
}