Я хотел бы создать другую таблицу с другими столбцами в той же модели ... это возможно?
Это моя модель
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Tbl_Perimetro extends Model
{
protected $table = "tbl_perimetros";
protected $fillable = [
'id', 'rif', 'act', 'razon_social', 'holdings_id', 'tipo', 'facturando', 'pines_id', 'regionduenas_id', 'sectoreconomicos_id', 'segmentos_id', 'segmentacionatcs_id', 'segmentacionings_id', 'estatus', 'equipos_id', 'ing', 'cobranzas_id', 'comerciales_id', 'ingpreventa_id', 'ingproyectos_id', 'postventaatc_id', 'postventaing_id'
];
protected $guarded = ['id'];
}