• File: DailyPeriodClosing.php
  • Full Path: /var/www/sandbox/app/DailyPeriodClosing.php
  • Date Modified: 03/21/2025 9:36 PM
  • File size: 981 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App;

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

class DailyPeriodClosing extends Model
{
    use HasFactory;

    protected $fillable = [
        'period_number',
        'close_hour',
        'total_imali_client_accounts',
        'total_imali_client_balance',
        'total_imali_business_accounts',
        'total_imali_stores_accounts',
        'total_imali_payments',
        'total_payments_value',
        'total_imposto_selo_value',
        'total_transaction_cost',
        'cost_total_value',
        'cost_comission_value',
        'total_recharge_purchases',
        'total_recharges',
        'total_credelec_purchases',
        'total_credelec',
        'total_water_bills',
        'total_water',
        'total_tv_packages',
        'total_tv',
        'total_p2p_internal_transfers',
        'total_p2p_internal',
        'total_p2p_external_transfers',
        'total_p2p_external'
    ];
}