EVOLUTION-MANAGER
Edit File: TipoRutaModel.php
<?php namespace App; use Illuminate\Database\Eloquent\Model; class TipoRutaModel extends Model { protected $table="tipo_ruta"; public $timestamps = true; protected $appends = ["id_encrypt"]; public function getIdEncryptAttribute() { return encrypt($this->attributes["id"]); } public function rutas(){ return $this->hasMany("App\RutaModel","tipo_ruta_id", "id")->with("parroquia"); } }