laravel helper class code example
Example 1: laravel str::random
use Illuminate\Support\Str;
$random = Str::random(40);
Example 2: laravel add utility class
"autoload": {
"classmap": [
...
],
"psr-4": {
"App\\": "app/"
},
"files": [
"app/helpers.php"
]
},
Example 3: how to share a helper globally laravel
php artisan make:provider HelperServiceProvider
Example 4: how to share a helper globally laravel
require_once app_path('Helpers/AnythingHelper.php');
Example 5: laravel helper functions
$callback = function ($value) {
return (is_numeric($value)) ? $value * 2 : 0;
};
$result = with(5, $callback);
$result = with(null, $callback);
$result = with(5, null);
Example 6: laravel helper
use Illuminate\Support\Str;
$length = Str::length('Laravel');