remove space ini php code example
Example 1: remove spaces from string php
<?php
$phone = preg_replace( '/\s+/', '', "01234 567890" );
echo $phone;
Example 2: how to trim string in laravel
{{ \Illuminate\Support\Str::limit($productVal, 20, $end='...') }}