Support the ongoing development of Laravel.io →
Eloquent Architecture
Last updated 1 year ago.
0

add the following code to the Item model

class Item extends Eloquent {

	protected $appends = array('cents');

	public function getCentsAttribute()
	{
		 return substr($this->attributes['price'], -2);
	}
}
Last updated 1 year ago.
0

sseffa said:

add the following code to the Item model

class Item extends Eloquent {

  protected $appends = array('cents');

  public function getCentsAttribute()
  {
  	 return substr($this->attributes['price'], -2);
  }
}

Thanks, I tried that, but it really makes no difference in this case.
I guess this could somehow have to do with autoloading of the helper functions.

Last updated 1 year ago.
0

I had some bad luck here... This issue was fixed five months ago, but my Laravel installation is older! >:(

Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

popolla popolla Joined 3 Feb 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.