Resolves heading issues in grid view

This commit is contained in:
Nilesh Deepak 2017-07-15 16:22:29 +05:30
parent 9872767f20
commit b4044e6c3a

View File

@ -34,8 +34,8 @@ class Book extends Entity
public function getHeadingExcerpt($length = 35)
{
$heading = $this->name;
return strlen($heading) > $length ? substr($heading, 0, $length-3) . '...' : $heading;
$bookHeading = $this->name;
return strlen($bookHeading) > $length ? substr($bookHeading, 0, $length-3) . '...' : $bookHeading;
}
public function cover()