J
Asked
I just want to change a few names of tabs and such. How would I do that? I'm pretty good with code but I just need to know a simplified process of how to do this. It looks like the code was minified even though I bought the standard licence.
Thanks,
Thanks,
- MSAnsweredHello,
The production code is minified. But you have all the source files and can modify as you need.
The front-end code is vuejs and path `resources/js/` folder. You can install dependencies with `npm i` and then run
```
npm run watch // to run app for development
npm run prod // to build app for production
```
Thank you - Login to Reply