Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laravelir/dashboarder
a laravel package to create dynamically dashboard in tebler template ( in development)
https://github.com/laravelir/dashboarder
crud-generator laravel laravel-crud-generator laravel-dashboarder laravel-package laravel-tabler livewire livewire-crud tabler tabler-ui
Last synced: 2 months ago
JSON representation
a laravel package to create dynamically dashboard in tebler template ( in development)
- Host: GitHub
- URL: https://github.com/laravelir/dashboarder
- Owner: laravelir
- Created: 2021-10-06T16:06:47.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-06-22T15:24:54.000Z (over 1 year ago)
- Last Synced: 2024-10-01T09:23:35.867Z (3 months ago)
- Topics: crud-generator, laravel, laravel-crud-generator, laravel-dashboarder, laravel-package, laravel-tabler, livewire, livewire-crud, tabler, tabler-ui
- Language: PHP
- Homepage:
- Size: 12.8 MB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
- [![Starts](https://img.shields.io/github/stars/laravelir/dashboarder?style=flat&logo=github)](https://github.com/laravelir/dashboarder/forks)
- [![Forks](https://img.shields.io/github/forks/laravelir/dashboarder?style=flat&logo=github)](https://github.com/laravelir/dashboarder/stargazers)
- [![Total Downloads](https://img.shields.io/packagist/dt/laravelir/laravel-.svg?style=flat-square)](https://packagist.org/packages/laravelir/dashboarder)# Laravel Dashboarder
A laravel package for generate admin dashboard dynamically based on [Tabler](https://github.com/tabler/tabler) template
use livewire - alpinejs
### Installation
1. Run the command below to add this package:
```
composer require laravelir/dashboarder
```2. Open your config/app.php and add the following to the providers array:
```php
Laravelir\Dashboarder\Providers\DashboarderServiceProvider::class,
```1. Run the command below to install:
```
php artisan dashboarder:install
```4. Run the command below to migrate tables and run seeders:
```
php artisan migratephp artisan db:seed --class="DashboarderSeeders"
```php artisan storage:link
#### Environment Variables
in install command automatic appends the following to `.env` file:
```
DASHBOARDER_AUTH_USERNAME=email|username
```### Using
after install you can accessing panel by below route:
`route.prefix`/dashboard
you can login into dashboarder by default admin user created by seeders:
email: `[email protected]`
password: `password`after login you must change it for security!!!
### Comands
## Testing
```bash
composer test
```## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Contributing
Please see [CONTRIBUTING](.github/CONTRIBUTING.md) for details.
## Security Vulnerabilities
Please review [our security policy](../../security/policy) on how to report security vulnerabilities.
## Credits
- [miladimos](https://github.com/miladimos)
## LicenseThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.