mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 04:24:12 +00:00
57 lines
2.4 KiB
PHP
57 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use App\Classes\ValueObjects\Constants\ApprovalStatus;
|
|
use App\Models\Order;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use App\Models\SegmentConstant;
|
|
use App\Classes\ValueObjects\Constants\SegmentConstants;
|
|
|
|
class AddressResource extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @param \Illuminate\Http\Request $request
|
|
* @return array
|
|
*/
|
|
public function toArray($request)
|
|
{
|
|
|
|
$centerPostcodeConstantObject = SegmentConstant::where('reference', SegmentConstants::CENTER_POSTCODE)->get();
|
|
$centerPostcodeConstant = $centerPostcodeConstantObject->isEmpty() ? [] : (array)$centerPostcodeConstantObject->first()->value;
|
|
$postcodeArea = in_array((String)$this->postcode, $centerPostcodeConstant) ? 'CENTER_POSTCODE' : null;
|
|
|
|
$outstationPostcodeConstantObject = SegmentConstant::where('reference', SegmentConstants::OUTSTATION_POSTCODE)->get();
|
|
$outstationPostcodeConstant = $outstationPostcodeConstantObject->isEmpty() ? [] : (array)$outstationPostcodeConstantObject->first()->value;
|
|
in_array((String)$this->postcode, $outstationPostcodeConstant) ? $postcodeArea = 'OUTSTATION_POSTCODE' : null;
|
|
|
|
return [
|
|
'id' => $this->id,
|
|
'reference' => $this->reference,
|
|
'street_one' => $this->street_one,
|
|
'street_two' => $this->street_two,
|
|
'district' => $this->district,
|
|
'state' => $this->state,
|
|
'postcode' => $this->postcode,
|
|
'post_code' => $this->postcode,
|
|
'post_code_area' => $postcodeArea,
|
|
'country' => $this->country,
|
|
'default' => (int) $this->default,
|
|
'status' => (int) $this->status,
|
|
'contact' => new ContactResource($this->contacts->first()),
|
|
'remark' => new RemarkResource($this->remarks->first()),
|
|
'type' => $this->type,
|
|
$this->mergeWhen($this->relationLoaded('owner'), [
|
|
'owner' => $this->when($this->owner instanceof Order, [
|
|
'reference' => $this->owner->reference,
|
|
'company_module' => new CompanyModuleResource($this->owner->companyModule),
|
|
'address' => new AddressResource($this->owner->addresses()->where('status', '=', ApprovalStatus::APPROVED)->first())
|
|
])
|
|
])
|
|
|
|
];
|
|
}
|
|
}
|