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