Simple package that extends Laravel Socialite with Seznam.cz provider, it can be easily used for user authentication via Seznam.cz, which is quite common in Czechia.
composer require pajaeu/socialite-seznam'seznam' => [
'client_id' => env('SEZNAMCZ_CLIENT_ID'),
'client_secret' => env('SEZNAMCZ_CLIENT_SECRET'),
'redirect' => env('SEZNAMCZ_REDIRECT_URI')
],You should now be able to use the provider like you would regularly use Socialite:
return Socialite::driver('seznam')->redirect();