PostResourceWithOptionalMerging.php 402 B

1234567891011121314151617
  1. <?php
  2. namespace Illuminate\Tests\Integration\Http\Fixtures;
  3. use Illuminate\Http\Resources\Json\JsonResource;
  4. class PostResourceWithOptionalMerging extends JsonResource
  5. {
  6. public function toArray($request)
  7. {
  8. return [
  9. 'id' => $this->id,
  10. $this->mergeWhen(false, ['first' => 'value']),
  11. $this->mergeWhen(true, ['second' => 'value']),
  12. ];
  13. }
  14. }