27 lines
567 B
PHP
Executable File
27 lines
567 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
|
|
class AddressResource extends JsonResource
|
|
{
|
|
public static $wrap = false;
|
|
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return [
|
|
'id' => $this->id,
|
|
'city' => new CityWithRegionResource($this->city),
|
|
'home' => $this->home,
|
|
'landmark' => $this->landmark,
|
|
];
|
|
}
|
|
}
|