Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/admin.priyotama.com/app/Models/
Upload File :
Current File : /home/users/unlimited/www/admin.priyotama.com/app/Models/StoreNotificationSetting.php

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class StoreNotificationSetting extends Model
{
    use HasFactory;

    protected $guarded = ['id'];
    public function store()
    {
        return $this->belongsTo(Store::class);
    }

}