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
| #!/bin/bash | |
| # Exit immediately if a command exits with a non-zero status | |
| set -e | |
| # 1. Define Version (Use argument if provided, otherwise default to 1.8.2) | |
| DEFAULT_VERSION="1.10.2" | |
| VERSION="${1:-$DEFAULT_VERSION}" | |
| echo "------------------------------------------------" |
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 | |
| namespace App\Fields; | |
| use Laravel\Nova\Fields\Number; | |
| use NumberFormatter; | |
| class Money extends Number | |
| { | |
| public $locale = "en_GB"; |