trim php example
Example 1: remove space from start and end of string in php
$trimmed = trim($text);
var_dump($trimmed);
Example 2: how to trim string in laravel
{{ \Illuminate\Support\Str::limit($productVal, 20, $end='...') }}
$trimmed = trim($text);
var_dump($trimmed);
{{ \Illuminate\Support\Str::limit($productVal, 20, $end='...') }}