Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thedevsbuddy/adminr
A simple yet powerful laravel starter with admin panel and CRUD resources generation to help you build application faster.
https://github.com/thedevsbuddy/adminr
admin admin-panel generator laravel
Last synced: 1 day ago
JSON representation
A simple yet powerful laravel starter with admin panel and CRUD resources generation to help you build application faster.
- Host: GitHub
- URL: https://github.com/thedevsbuddy/adminr
- Owner: thedevsbuddy
- Created: 2021-12-17T12:27:42.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-18T08:54:07.000Z (10 months ago)
- Last Synced: 2024-08-21T11:18:08.966Z (3 months ago)
- Topics: admin, admin-panel, generator, laravel
- Language: PHP
- Homepage: https://devsbuddy.com/open-source/adminr
- Size: 5.69 MB
- Stars: 27
- Watchers: 5
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# AdminR v0.4.7
---
## NOTE: I would like to inform you that this project is abandoned and is no longer receiving any update.
---
![AdminR](./public/screenshots/AdminR.svg)
## About AdminR
AdminR is a simple admin panel built on top of [Laravel Framework](https://laravel.com) to help developers create laravel backend and APIs with ease so they can more focus on creating actual web app or any client side apps.
AdminR help to reduce approx 90% of the work for developers which they do to build a backend or admin panel and the APIs for their apps.
## Known Issues
### I am aware of (and fixing them)
- No issue known.
- **Please report issues in issue tab if found any issue**## Future plans
### I am preparing to add
- `indexing` option for resource generation (on `SQL` level).
- DataTable option for every resource
- You will have an option to select whether to use datatable or native table.
- Import export options on resources.
- Search option for resources.
- Many more features.---
## Support me
If you found this package helpful you can show support by clicking on the following button below and donating some amount to help me work on these projects frequently.
---
## Get Started
Install the project
```bash
composer create-project thedevsbuddy/adminr
```Generate app key
```bash
php artisan key:generate
```Setup / update database connection
```env
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=adminr
DB_USERNAME=root
DB_PASSWORD=secret
```Migrate database and seed demo data
```bash
php artisan migrate --seed
```Link storage folder
```bash
php artisan storage:link
```By default, you will get `3` users and role
```text
Super admin (super.admin)
email: [email protected]
pwd: passwordAdmin (admin)
email: [email protected]
pwd: passwordUser (user)
email: [email protected]
pwd: password
```That's it your project setup is completed.
Happy coding.
### Special thanks to
#### CoreUI
For the admin panel UI we have used [coreui](https://coreui.io) which is an awesome admin template out there.
## Security Vulnerabilities
If you discover a security vulnerability within AdminR, please send an e-mail to Devsbuddy via [[email protected]](mailto:[email protected]). All security vulnerabilities will be promptly addressed.
## License
The AdminR is open-source software licensed under the [MIT license](https://opensource.org/licenses/MIT).