'object', 'updated_at' => 'timestamp', 'created_at' => 'timestamp', 'deleted_at' => 'timestamp', ]; protected $appends = [ 'hashed_id', ]; protected $fillable = [ 'token', 'routing_number', 'gateway_customer_reference', 'gateway_type_id', 'meta', 'client_id', ]; public function getEntityType() { return self::class; } public function client() { return $this->belongsTo(Client::class)->withTrashed(); } public function gateway() { return $this->hasOne(CompanyGateway::class, 'id', 'company_gateway_id'); } public function gateway_type() { return $this->hasOne(GatewayType::class, 'id', 'gateway_type_id'); } public function company() { return $this->belongsTo(Company::class); } public function user() { return $this->belongsTo(User::class)->withTrashed(); } // /** // * Retrieve the model for a bound value. // * // * @param mixed $value // * @param null $field // * @return Model|null // */ // public function resolveRouteBinding($value, $field = null) // { // return $this // ->where('id', $this->decodePrimaryKey($value))->firstOrFail(); // } }