|MunicipalitySize newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|MunicipalitySize newQuery() * @method static \Illuminate\Database\Eloquent\Builder|MunicipalitySize query() * @method static \Illuminate\Database\Eloquent\Builder|MunicipalitySize whereAcronym($value) * @method static \Illuminate\Database\Eloquent\Builder|MunicipalitySize whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|MunicipalitySize whereDescription($value) * @method static \Illuminate\Database\Eloquent\Builder|MunicipalitySize whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|MunicipalitySize whereUpdatedAt($value) * @mixin \Eloquent */ class MunicipalitySize extends Model { use HasFactory; protected $table = 'municipality_sizes'; protected $guarded = ['id']; protected $casts = [ 'created_at' => 'datetime', 'updated_at' => 'datetime', ]; }