mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-22 05:54:01 +00:00
44 lines
897 B
PHP
44 lines
897 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
/**
|
|
* Class Segment
|
|
* @package App\Models
|
|
*
|
|
* @property string $name
|
|
* @property string $reference
|
|
*/
|
|
class Segment extends AbstractModel
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $table = 'segments';
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'deleted_at' => 'datetime',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return HasMany
|
|
*/
|
|
public function constants(): HasMany
|
|
{
|
|
return $this->HasMany(SegmentConstant::class, 'segment_id', 'id');
|
|
}
|
|
|
|
// /**
|
|
// * @return belongsToMany
|
|
// */
|
|
// public function companyConnections(): belongsToMany
|
|
// {
|
|
// return $this->belongsToMany(CompanyConnection::class, (new ConnectionSegment())->getTable(), 'segment_id', 'company_connection_id');
|
|
// }
|
|
}
|