Created
June 5, 2020 05:19
-
-
Save skadimoolam/852f1d77addf41f56ac3c7958dff54cf to your computer and use it in GitHub Desktop.
Create custom Laravel Helper Methods | https://simplestweb.in/blog/create-custom-laravel-helper-methods
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"autoload": { | |
"file": [ | |
"app/Utils/Helpers.php" | |
] | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (! function_exists('say_hi')) { | |
function say_hi($name) { | |
return 'Hi ' . $name; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment