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/zsh | |
| cleanup() { | |
| # Turn off maintenance mode | |
| php artisan up | |
| echo "💥 Deployment of Main App finished with errors!! 😭 " | |
| } | |
| if [ $# -eq 0 ]; then | |
| echo "No release version specified. Exiting.." |
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
| <script src="{{ asset('js/app.js') }}"></script> | |
| <script> | |
| let logComponentsData = function () { | |
| window.livewire.components.components().forEach(component => { | |
| console.log(component.name); | |
| console.log(component.data); | |
| }); | |
| }; | |
| document.addEventListener("livewire:load", function(event) { |