Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/asepindrak/admin-builder
Admin Dashboard Builder Framework v1 - As simple as you can (no coding needed!)
https://github.com/asepindrak/admin-builder
admin-dashboard dashboard-generator dashboard-templates framework php template
Last synced: about 1 month ago
JSON representation
Admin Dashboard Builder Framework v1 - As simple as you can (no coding needed!)
- Host: GitHub
- URL: https://github.com/asepindrak/admin-builder
- Owner: asepindrak
- Created: 2023-04-04T16:23:53.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-05-05T16:46:51.000Z (8 months ago)
- Last Synced: 2024-05-05T17:45:37.225Z (8 months ago)
- Topics: admin-dashboard, dashboard-generator, dashboard-templates, framework, php, template
- Language: HTML
- Homepage:
- Size: 14.5 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
## Admin Dashboard Builder Framework v1.0.11
> As simple as you can (no coding needed!)
Author: Asep Indra K (https://asepindrak.github.io/)
URL: https://github.com/asepindrak/admin-builder
> ---
![alt text](https://raw.githubusercontent.com/asepindrak/admin-builder/master/assets/img/ss0.png)
> ---
![alt text](https://raw.githubusercontent.com/asepindrak/admin-builder/master/assets/img/ss1.png)
> ---
![alt text](https://raw.githubusercontent.com/asepindrak/admin-builder/master/assets/img/ss2.png)
> ---
![alt text](https://raw.githubusercontent.com/asepindrak/admin-builder/master/assets/img/ss3.png)
> ---
![alt text](https://raw.githubusercontent.com/asepindrak/admin-builder/master/assets/img/ss4.png)
> ---
## Getting Started
- Supported web server: Apache2
- Supported web server: Nginx (convert .htaccess to nginx configuration: https://winginx.com/en/htaccess)
- Supported database: Mysql (Install WAMP for windows or LAMP STACK on Linux)
- XAMPP is not supported because it uses MariaDB which doesn't have JSON_ARRAYAGG & JSON_OBJECT functions1. Configuration
- create new file config/config.php or duplicate from config.sample.php
- change variable $SERVER to your host
- create new file api/v1/config/db.php or duplicate from api/v1/config/db.sample.php
- create new database2. Models
- create new model file at api/v1/models/
- add new model to api/v1/models/models.php3. Pages & Routing
- add new page to config/pages.php
4. Tables
- create new table file at tables/
- add new table to tables/tables.php5. Migrations
- access /api/v1/config/generate_db.php from your browser
6. Login
- default access (username: admin, password: admin)> ---
## Example
> ## Model
### model articles
```
$models['articles'] = array(
'title' => 'text', //type text
'category_id' => array( // foreign key for table article_categories id
'model' => 'article_categories', //include table article_categories
'type' => 'int(11)', // type int with length 11
'isNull' => true // set NULL
),
'slug' => 'text', //type text
'content' => 'text', //type text
'keyword' => 'text', //type text
'publish_date' => 'date', //type date
'image' => 'text' //type text
);```
### model article_categories
```
$models['article_categories'] = array(
'name' => 'varchar 50 null', // type varchar, length 50, default value null
);
```### model users
```
$models['users'] = array(
'username' => 'varchar 50 null', // type varchar, length 50, default value null
'email' => 'varchar 60 null', // type varchar, length 60, default value null
'password' => 'varchar 100 null', // type varchar, length 100, default value null
'image' => 'text', // type text
'name' => 'varchar 50 null', // type varchar, length 50, default value null
'phone' => 'varchar 15 null', // type varchar, length 15, default value null
);
```> ---
### Migration
1. Access this url http://localhost/admin-builder/api/v1/config/generate_db.php after creating models
2. You can add new column to model and access http://localhost/admin-builder/api/v1/config/generate_db.php to alter the table> ---
> ## Pages
```
$pages["articles"] = array(
'name' => 'Article', // page name
'route' => 'articles', // route
'model' => 'articles', // model / table
'isMenu' => true, // show/hide on menu
'icon' => 'bi bi-newspaper' // bootstrap icon https://icons.getbootstrap.com/
);
```> ---
> ## Tables
```
$tables['articles'] = array(
'models' => array(
'title', // column
'category_id' => array(
'model' => 'article_categories', // include from model article_categories
'id' => 'id', // select id
'value' => 'name' // select value
),
'slug', // column
'content', // column
'keyword', // column
'publish_date', // column
'image' // column
),
'titles' => array('Title', 'Category', 'Slug', 'Content', 'Keyword', 'Publish Date', 'Image'), //table head
'filters' => array( // filter data
'title',
'category_id',
'keyword',
'date_range' => array('publish_date') // pick column for date_range filter
),
'types' => array( // input type
'image' => 'image', // set for input type image
'category_id' => array('article_categories'), //set for input type select (include model article_categories)
'publish_date' => 'date' // set for input type date
),
'isEdit' => true, // allow to edit data
'isTrash' => true, allow to delete data
);
```Template Admin By
Template Name: NiceAdmin
Template URL: https://bootstrapmade.com/nice-admin-bootstrap-admin-html-template/
Author: BootstrapMade.com
License: https://bootstrapmade.com/license/```
```