Fabio Carvalho
Files Not Updating Properly After Git Pull
I'm working with a Laravel application that uses Filament and several packages like filament-shield and filament-exceptions. Everything works fine in my local development environment, but when I commit the changes to GitHub and pull them on the production server, some files don’t update correctly. For instance, my PanelAdminProvider file wasn't updated as expected, even though it works fine locally.
Here are the steps I’m following:
1. I commit all my changes from the local environment to GitHub.
2. On the production server, I run git pull.
3. I execute composer install to make sure all dependencies are updated.
Despite this, some changes don’t reflect properly. I suspect it might have something to do with files in /public/vendor not being updated as well. Also, here’s my .gitignore for reference:
Is there anything I'm missing in the deployment process, especially with regard to the /public/vendor folder or file permissions? What additional steps should I take to ensure all changes are properly deployed and reflected on the production server?
Also, my local ambient is Windows but my production server is in Linux
24 replies
How to input multiple rows at once?
I made an repeater in a custom front-end view using JS, it actually is working fine, tho I need a way to make the form get every input and receive it on a Panel as multiple rows
So, if user wants to send multiple rows at the same time he can. I need to create an form that user can add multiple hangtags from the same marketplaces at once
3 replies