- Laravel = 11.20.0
- PHP = 8.2.12
- Composer Version = 2.7.7
- Clone the repository.
- Run composer install to install dependencies.
- Set up your database configuration in the .env file.
- Run php artisan migrate to create the necessary database tables.
- Customize the application as needed.
composer installphp artisan migratephp artisan servenpm installnpm run build- Install the Laravel Socialite package using Composer:
composer require laravel/socialite-
Configure your config/services.php file with your linkedin app keys:
'linkedin' => [ 'client_id' => 'Your App ID', 'client_secret' => 'Your App Secret', 'redirect' => 'http://localhost:8000/auth/linkedin/callback', ], -
Create a linkedin project here (https://www.linkedin.com/developers/apps), and copy the App ID and App Secret into the above configuration.
