• File: StoreConfig.php
  • Full Path: /var/www/imalipartnersapi/app/StoreConfig.php
  • Date Modified: 02/07/2023 8:01 PM
  • File size: 405 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'
    ];
}