https://github.com/majid-razzaq/laravel-rest-api
This Laravel REST API handles CRUD operations, including image uploads, using a MySQL database. It efficiently manages creating, reading, updating, and deleting data for web applications.
https://github.com/majid-razzaq/laravel-rest-api
api apigateway laravel-framework laravel-rest-api laravel-restful-api laravel11 localhost mysql-database restful-api
Last synced: 3 months ago
JSON representation
This Laravel REST API handles CRUD operations, including image uploads, using a MySQL database. It efficiently manages creating, reading, updating, and deleting data for web applications.
- Host: GitHub
- URL: https://github.com/majid-razzaq/laravel-rest-api
- Owner: Majid-Razzaq
- Created: 2024-09-03T15:57:09.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-09-17T08:35:32.000Z (9 months ago)
- Last Synced: 2025-03-27T13:48:33.965Z (3 months ago)
- Topics: api, apigateway, laravel-framework, laravel-rest-api, laravel-restful-api, laravel11, localhost, mysql-database, restful-api
- Language: PHP
- Homepage:
- Size: 102 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Laravel Rest API
## Requirements
- Laravel = 11.20.0
- PHP = 8.2.12
- Composer Version = 2.7.7## Getting Started
- Clone the repository.
- Change the .env.example to .env and add your database info
- Run composer install to install dependencies.
- Set up your database configuration in the .env file.
- Run php artisan migrate to create the necessary database tables.```javascript
composer install
``````javascript
php artisan migrate
```