mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-19 20:44:19 +00:00
16 lines
253 B
PHP
16 lines
253 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
|
|
|
|
class KeyValuePair extends AbstractModel
|
|
{
|
|
protected $table = 'key_value_pairs';
|
|
|
|
public function owner(): MorphTo
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
}
|