• File: Integration.php
  • Full Path: /var/www/html/back/app/Models/Integration.php
  • File size: 418 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

declare(strict_types=1);

namespace App\Models;

use Illuminate\Database\Eloquent\Model;

class Integration extends Model
{
    protected $fillable = [
        'id',
        'system_id',
        'name',
        'configuration',
        'compare_payments',
        'currency',
        'api_key',
        'date_refresh',
        'date_start',
        'date_end',
        'is_active',
        'archived'
    ];

}