mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 00:02:05 -04:00
19 lines
443 B
PHP
19 lines
443 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Modules\GeneralSetting\Entities\UserNotificationSetting;
|
|
|
|
class PushNotification extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $guarded = ['id'];
|
|
|
|
public function user_notification_setting()
|
|
{
|
|
return $this->belongsTo(UserNotificationSetting::class,'user_notification_setting_id','id');
|
|
}
|
|
}
|