mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-01 08:16:55 -04:00
18 lines
324 B
PHP
18 lines
324 B
PHP
<?php
|
|
|
|
namespace Modules\JobPortal\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class UserViews extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'jp_user_views';
|
|
|
|
public function user(){
|
|
return $this->belongsTo(User::class,'id');
|
|
}
|
|
}
|