fix datatable using token api and paginate when searching, fix skrd_amount column to decimal 20
This commit is contained in:
28
app/Http/Resources/UserResource.php
Normal file
28
app/Http/Resources/UserResource.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Resources;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Http\Resources\Json\JsonResource;
|
||||
|
||||
class UserResource extends JsonResource
|
||||
{
|
||||
/**
|
||||
* Transform the resource into an array.
|
||||
*
|
||||
* @return array<string, mixed>
|
||||
*/
|
||||
public function toArray(Request $request): array
|
||||
{
|
||||
return [
|
||||
'id' =>$this->id,
|
||||
'name' =>$this->name,
|
||||
'email' =>$this->email,
|
||||
'created_at' =>$this->created_at->toDateTimeString(),
|
||||
'updated_at' =>$this->updated_at->toDateTimeString(),
|
||||
'position' => $this->position,
|
||||
'firstname' => $this->firstname,
|
||||
'lastname' => $this->lastname,
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user