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.
Clone the repo locally:
git clone https://github.com/leandrocfe/filament-apex-charts-demo.git
Switch to the repo folder:
cd filament-apex-charts-demo
Install dependencies:
composer install
npm install && npm run build
Setup configuration:
cp .env.example .env
Generate application key:
php artisan key:generate
Create an SQLite database. You can also use another database (MySQL, Postgres), simply update your configuration accordingly.
touch database/database.sqlite
You may run the following commands in your terminal:
php artisan migrate --seed
After the project has been built, start Laravel's local development server using the Laravel's Artisan CLI serve command:
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.
You can choose a user's credentials and authenticate to access the Filament Admin Panel (default password: password).
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.