# Installation du projet Laravel REST API ## Installation du support api ``` php artisan install:api ``` Executer les migrations une fois le support installer. ## Requete CURL pour créer un article ``` curl -X POST http://192.168.56.56/api/articles -H "Content-Type: application/json" -d '{"titre":"Mon titre","contenu":"Contenu de l article"}' ```