This repository contains an example Symfony 4 application for the AdminLTE-Bundle.
It serves as a living documentation for first time users and easier testing of theme features.
Please read the theme documentation for more information on how to use this theme.
Simple as that:
composer create-project kevinpapst/adminlte-bundle-demo
Now spin up the PHP built-in webserver and enjoy the demo:
cd adminlte-bundle-demo
bin/console server:run
and see it running at http://127.0.0.1:8000
If you want to re-compile the frontend assets execute:
yarn install
npm run build
Be aware that ONLY the theme translations will change (like login screen and toolbar dropdowns), the demo itself is not translated!
- Simple solution: This demo supports locales via URLs, use the dropdown in the pages head navigation.
- Permanent solution: Edit the file
config/services.yaml
and change fromlocale: 'en'
to something likelocale: 'ar'
.
If you want to see the theme in action (in a real world application), checkout my Symfony 4 based time-tracking application Kimai 2 at: https://github.com/kevinpapst/kimai2