Hi @Aysa
Delete you Vendor folder and composer.lock file.
Then replace your composer.json file from this one - https://github.com/bagisto/bagisto/blob/master/composer.json
Run
composer install
on your root.
If you find below error.
In ProviderRepository.php line 208:
Class 'Dimsav\Translatable\TranslatableServiceProvider' not found
then
In app.php file of config folder, search for following -
Dimsav\Translatable\TranslatableServiceProvider::class,
and replace with
Astrotomic\Translatable\TranslatableServiceProvider::class,
and find TranslatableModel.php file in Core package's Eloquent folder.
In this file, you will find -
use Dimsav\Translatable\Translatable;
replace with
use Astrotomic\Translatable\Translatable;
Thanks