<?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', ]; }