File: D:/HostingSpaces/SBogers10/stafa.komma.pro/app/Komma/Base/LimitCharTrait.php
<?php
namespace App\Komma\Base;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Str;
/**
* Trait LimitCharTrait
*
* @package App\Komma\Base
* @mixin Model
*/
trait LimitCharTrait
{
/**
* Limit the specified attribute length to a certain amount of characters
*
* @param string $attribute
* @param int $charCount
* @param string $ellipsis
* @return string
*/
public function limitChar(string $attribute, int $charCount, string $ellipsis = '...'): string {
$value = $this->getAttribute($attribute);
$limited = Str::limit($value, $charCount, $ellipsis);
return $limited;
}
}