• File: MobileTariff.php
  • Full Path: /var/www/sandbox/app/MobileTariff.php
  • Date Modified: 04/15/2024 8:53 PM
  • File size: 358 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App;

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

class MobileTariff extends Model
{
    use HasFactory;

    protected $fillable = [
        'max',
        'min', 
        'imali_cost',
        'commission',
        'stamp_tax',
        'imali_fee',
        'mobile_wallets_id'
    ];
}