• File: DadosNegocio.php
  • Full Path: /var/www/sandbox/app/DadosNegocio.php
  • Date Modified: 03/10/2025 4:24 PM
  • File size: 410 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace App;

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

class DadosNegocio extends Model
{
    use HasFactory;

    protected $fillable = [
        'business_address',
        'business_accounts_id',
        'activity_type',
        'antiquity',
        'current_location_antiquity',
        'other_activities',
        'monthly_income',
    ];
}