• File: StoreConfig.php
  • Full Path: /var/www/imaliapitest/app/StoreConfig.php
  • Date Modified: 05/19/2025 4:29 PM
  • File size: 389 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App;

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

class StoreConfig extends Model
{
    use HasFactory;

    protected $fillable = [
        'notify', 'notify_push', 'notify_sms', 'notify_email', 'use_period', 'on_map', 'accept_payment', 'close_period',
        'coin', 'bank_default', 'store_id', 'use_refund'
    ];
}