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
| Play this game by pasting the script into https://puzzlescriptnext.polyomino.com/editor.html |
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
| Play this game by pasting the script into https://puzzlescriptnext.polyomino.com/editor.html |
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
| Vue.filter('formatNumber', function (value, decimals = 2, thousandsSeparator = ',') { | |
| let result = parseFloat(value).toFixed(decimals).toString(); | |
| if(thousandsSeparator) result = result.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsSeparator) | |
| return result | |
| }); |
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 | |
| /* | |
| * I've added updateRelationFields() to the crudcontroller, and for now I just call this on store/update in the crud controllers that use this field type. | |
| */ | |
| namespace NineDotMedia\BackpackBase\Http\Controllers; | |
| use Backpack\CRUD\app\Http\Controllers\CrudController as CrudControllerBackpack; | |
| use Illuminate\Http\Request; | |
| use NineDotMedia\BulkNotifications\Models\BulkNotification; |
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\Vendor\venturecraft\revisionable; | |
| use Illuminate\Database\Eloquent\Model as Eloquent; | |
| use Illuminate\Support\Facades\Log; | |
| /** | |
| * Revision. | |
| * |