Please check the official laravel installation guide for server requirements before you start. Official Documentation
You can view the following API routes:
- Get all students:
GET/api/students - Create a student:
POST/api/students - Get a single student:
GET/api/students/{id} - Update a student:
PUT/PATCH/api/students/{id} - Delete a student:
DELETE/api/students/{id}