20 lines
468 B
PHP
20 lines
468 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class ResolutionBasesResource extends JsonResource
|
|
{
|
|
public function toArray($request){
|
|
return [
|
|
// 'workflow' => $this->workflow_id,
|
|
'department_id' => $this->department_id,
|
|
'department' => $this->department->title,
|
|
'status' => $this->resolution->title,
|
|
'note' => $this->resolutionbasis,
|
|
];
|
|
}
|
|
|
|
}
|