Looking to hire Laravel developers? Try LaraJobs

laravel-skills-list maintained by khrigo

Description
List of all LinkedIn skills for Laravel
Last update
2023/08/10 18:38 (dev-main)
License
Links
Downloads
116
Tags

Comments
comments powered by Disqus

Skills List

Skills List is a package for Laravel which lists all LinkedIn skills.

Installation

Run composer require khrigo/laravel-skills-list.

If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php

Khrigo\SkillsList\SkillsListServiceProvider::class,

If needed, add the following alias as well

'Skills' => Khrigo\SkillsList\SkillsListFacade::class,

Usage

  • Format (json, txt)

Get all skills

Route::get('/skills', function()
{
	return Skills::getList('json');
});