G
Asked
When i edit a opened sale the tax keeps adding into the final price i made the tax inclusive to the item but its all good until i edit that sale ive provided 2 photos
Attachments
- GAnsweredim getting this error when i do the php artisan migrate
through putty cmd i went to my installation folder and run the command - MSAnsweredHello,
1. Please make sure that `mysql` & `pdo_mysql` extensions are enabled on your php server.
2. Please run these command to clear cache, view, routes & config.
```
php artisan cache:clear
php artisan view:clear
php artisan route:clear
php artisan config:clear
```
3. Please make sure that you `.env` has not moved or changed. It should have your database connection details.
```
# DATABASE
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=yourDBName
DB_USERNAME=yourUserName
DB_PASSWORD=yourPassword
```
Thank you - Login to Reply