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