Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/syahrulbhudif/restapi-php-native
KING Php Native Rest API
https://github.com/syahrulbhudif/restapi-php-native
Last synced: 6 days ago
JSON representation
KING Php Native Rest API
- Host: GitHub
- URL: https://github.com/syahrulbhudif/restapi-php-native
- Owner: SyahrulBhudiF
- Created: 2024-09-08T18:14:54.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-09-18T02:55:36.000Z (4 months ago)
- Last Synced: 2024-09-18T06:19:59.002Z (4 months ago)
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# REST API KING PHP Native
**Penjelasan alur:**- Controller menerima request HTTP.
- Controller memanggil Service yang sesuai.
- Service meminta data dari Repository atau mengirim objek model ke Repository untuk menambah atau mengubah data.
- Repository berinteraksi dengan database.
- Data dikembalikan melalui Repository ke Service.
- Service memproses data jika diperlukan.
- Controller menerima hasil dari Service dan mengirimkan response.**Keuntungan dari pola ini:**
- Separation of Concerns yang lebih baik.
- Lebih mudah untuk unit testing.
- Lebih fleksibel untuk perubahan sumber data atau logika bisnis.
- Cocok untuk aplikasi yang kompleks atau yang memerlukan skalabilitas.