mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 12:33:56 +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();
|
|
}
|
|
}
|