composer install
mv .env.example .env
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
php artisan key:generate
php artisan migrate
Chạy project laravel trên địa chỉ http://localhost:8000 với câu lệnh
php artisan serve
- GET - http://localhost:8000/api/customers/ - Để lấy toàn bộ khách hàng.
- GET - http://localhost:8000/api/customers/{customer-ID} - Để lấy ra khách hàng theo ID.
- POST - http://localhost:8000/api/customers/ - Với dữ liệu gửi kèm là chuỗi JSON: {"first_name":"","last_name":""} - Để tạo mới khách hàng.
- PUT - http://localhost:8000/api/customers/{customer-ID} - Với dữ liệu gửi kèm là chuỗi JSON: {"first_name":"","last_name":""} - Để cập nhật khách hàng theo ID.
- DELETE - http://localhost:8000/api/customers/{customer-ID} - Để xóa khách hàng theo ID.
Mã nguồn Laravel-restful-api được sử dụng để thực hành tại CodeGym