/
var
/
www
/
html
/
back
/
app
/
Models
/
Upload File
HOME
<?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' ]; }