11/05
2018
Wallogit.com
2017 © Pedro Peláez
This package parses CV via daxtra then gives you a structured data.
This package parses CV via daxtra then gives you a structured data., (*1)
Install using composer:, (*2)
composer require geeky/cvparser
Then, in config/app.php, add the following to the service providers array., (*3)
array(
...
Geeky\CV\ParserServiceProvider::class,
)
Finally, in config/app.php, add the following to the facades array., (*4)
array(
'CV' => Geeky\CV\ParserFacade::class,
)
Example usage using Facade:, (*5)
$response = CV::parse('resume_url');