-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,42 @@ | |
Garuda CRUD Generator adalah CRUD Generator Untuk Framework Codeigniter 3, Library Datatables Serverside Untuk Menampilkan Data Dan Template AdminLTE. | ||
CRUD Generator Yang Saya Gunakan Adalah Harviacode Yang Sudah Dimodifikasi Agar Hasil Generate Filenya Sesuai Dengan AdminLTE. | ||
|
||
### REST Server (API) | ||
Garuda CRUD Generator telah di lengkapi dengan fitur `api`, referensi https://github.com/ardisaurus/ci-restserver.git | ||
|
||
- Contoh hit API `BASE_URL/api/example/users` | ||
- Result : | ||
``` | ||
[ | ||
{ | ||
"id": 1, | ||
"name": "John", | ||
"email": "[email protected]", | ||
"fact": "Loves coding" | ||
}, | ||
{ | ||
"id": 2, | ||
"name": "Jim", | ||
"email": "[email protected]", | ||
"fact": "Developed on CodeIgniter" | ||
}, | ||
{ | ||
"0": { | ||
"hobbies": [ | ||
"guitar", | ||
"cycling" | ||
] | ||
}, | ||
"id": 3, | ||
"name": "Jane", | ||
"email": "[email protected]", | ||
"fact": "Lives in the USA" | ||
} | ||
] | ||
``` | ||
|
||
|
||
|
||
### Cara Install & Setup | ||
1.silahkan clone atau download repository ini.<br> | ||
2.silahkan extrack dan rename nama folder menjadi garuda_crud_generator.<br> | ||
|