HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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;
    }
}