Moved to _dev
This commit is contained in:
27
crater/app/Http/Resources/AbilityResource.php
Normal file
27
crater/app/Http/Resources/AbilityResource.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?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,
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user