Make sure .env file contain the following
APP_URLset to the correct publicly accessible URL- Doesn't have the
APP_ENVso app is in production mode APP_DEBUG=falseto disable debug mode
| <?php | |
| /** | |
| * Checks if the given string is an address | |
| * | |
| * @param String $address the given HEX adress | |
| * @return Boolean | |
| */ | |
| function isAddress($address) { | |
| if (!preg_match('/^(0x)?[0-9a-f]{40}$/i',$address)) { |
Create the following files inside your Laravel project.
Add the following to the .gitignore file in the main project.
RegExp: /contenteditable(([ ]*)?\=?([ ]*)?"(.*)")?(\=([a-z0-9]*)\s)?/gi
Pattern: contenteditable(([ ]*)?\=?([ ]*)?"(.*)")?(\=([a-z0-9]*)\s)?