This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccount/app/Http/Resources/API/AppAccess.php

23 lines
467 B
PHP
Raw Normal View History

2019-06-20 14:46:50 +00:00
<?php
namespace App\Http\Resources\API;
use Illuminate\Http\Resources\Json\JsonResource;
class AppAccess extends JsonResource
{
/**
* Transform the resource into an array.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function toArray($request)
{
return [
'app_id' => $this->app_id,
'user_id' => $this->user_id,
'status' => $this->status
];
}
}