This package shouldn't be used directly, use either Kontent Eloquent or Kontent Analogue instead, both are implicitly relying on this package.
Add the dependency to composer:
# either
composer require konekt/kontent-eloquent
# or
composer require konekt/kontent-analogue
# this works as well, but not much sense at the moment:
composer require konekt/kontent-laravel
Register The Provider
In the config/app.php configuration file, add to the provider array:
'providers'=> [// Other Service ProvidersKonekt\Kontent\Laravel\KontentServiceProvider::class,],
*:Configure this before you run the package's migrations.
This setting influences whether translation related columns are generated in
the database during the migration↩