Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leandrocfe/filament-apex-charts-demo
Source code for the https://filament-apex-charts-demo.leandroferreira.dev.br website.
https://github.com/leandrocfe/filament-apex-charts-demo
apexcharts filament filamentadmin filamentphp laravel laravel-framework laravel-package
Last synced: about 2 months ago
JSON representation
Source code for the https://filament-apex-charts-demo.leandroferreira.dev.br website.
- Host: GitHub
- URL: https://github.com/leandrocfe/filament-apex-charts-demo
- Owner: leandrocfe
- License: mit
- Created: 2022-12-09T08:54:05.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T13:59:21.000Z (almost 2 years ago)
- Last Synced: 2024-10-11T11:11:11.995Z (3 months ago)
- Topics: apexcharts, filament, filamentadmin, filamentphp, laravel, laravel-framework, laravel-package
- Language: PHP
- Homepage: https://filament-apex-charts-demo.leandroferreira.dev.br
- Size: 563 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Filament ApexCharts Demo
Explore the sample PHP charts created to show some of the enticing features packed in ApexCharts.
All examples here are included with source code to save your development time.![screenshot](https://raw.githubusercontent.com/leandrocfe/filament-apex-charts-demo/master/screenshots/example.jpg)
## Installation
Clone the repo locally:
```bash
git clone https://github.com/leandrocfe/filament-apex-charts-demo.git
```Switch to the repo folder:
```bash
cd filament-apex-charts-demo
```Install dependencies:
```bash
composer install
npm install && npm run build
```Setup configuration:
```bash
cp .env.example .env
```Generate application key:
```bash
php artisan key:generate
```Create an SQLite database. You can also use another database (MySQL, Postgres), simply update your configuration accordingly.
```bash
touch database/database.sqlite
```You may run the following commands in your terminal:
```bash
php artisan migrate --seed
```## Usage
After the project has been built, start Laravel's local development server using the Laravel's Artisan CLI serve command:
```bash
php artisan serve
```Once you have started the Artisan development server, your application will be accessible in your web browser at [http://localhost:8000/admin](http://localhost:8000/admin).
You can choose a user's credentials and authenticate to access the Filament Admin Panel (default password: _password_).
## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
## License
[MIT](https://choosealicense.com/licenses/mit/)