Answers for "creating custom laravel helpers"

PHP
-2

laravel helper

use Illuminate\Support\Str;

$length = Str::length('Laravel');

// 7
Posted by: Guest on January-24-2021
-1

add custom helper laravel

"autoload": {
    "classmap": [
        "database/seeds",
        "database/factories"
    ],
    "psr-4": {
        "App\\": "app/"
    }
},
"autoload-dev": {
    "psr-4": {
        "Tests\\": "tests/"
    }
},
Posted by: Guest on December-23-2020

Browse Popular Code Answers by Language