mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 12:34:18 +00:00
48 lines
1002 B
PHP
48 lines
1002 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Classes\ValueObjects\Constants\SegmentConstants;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
/**
|
|
* Class SegmentConstant
|
|
* @package App\Models
|
|
*
|
|
* @property \App\Models\Segment segment_id
|
|
* @property string detail
|
|
*/
|
|
class SegmentConstant extends AbstractModel
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $table = 'segment_constants';
|
|
|
|
protected $dates = ['deleted_at'];
|
|
|
|
public function getDetailAttribute($value)
|
|
{
|
|
return $value ? json_decode($value) : [];
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo
|
|
*/
|
|
public function segment(): BelongsTo
|
|
{
|
|
return $this->BelongsTo(Segment::class, 'segment_id', 'id');
|
|
}
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function service(){
|
|
return $this->hasOne(ServiceType::class, 'id', 'detail->id')
|
|
->whereIn('reference', [SegmentConstants::SERVICE_TYPE, SegmentConstants::CUSTOM_SERVICE_TYPE]);
|
|
}
|
|
|
|
|
|
|
|
}
|