mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
28 lines
640 B
PHP
28 lines
640 B
PHP
<?php
|
|
|
|
namespace Crater\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class AbilityResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'name' => $this->name,
|
|
'entity_id' => $this->entity_id,
|
|
'entity_type' => $this->entity_type,
|
|
'only_owned' => $this->only_owned,
|
|
'options' => $this->options,
|
|
'scope' => $this->scope,
|
|
];
|
|
}
|
|
}
|