mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-30 20:16:46 -04:00
16 lines
288 B
PHP
16 lines
288 B
PHP
<?php
|
|
|
|
namespace Modules\Customer\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use App\Models\User;
|
|
|
|
class UserAdditionalContact extends Model
|
|
{
|
|
protected $guarded = ["id"];
|
|
|
|
public function user(){
|
|
return $this->belongsTo(User::class, 'user_id', 'id');
|
|
}
|
|
}
|