Radmin is a premium template starter kit including REST API, Advanced user, roles & permission management , Serverside Datatable, Datatable Edit and Export( CSV, EXCEL, PRINT, PDF, COPY),Cache Clear, XSS protection and many more features.
Buy this premium starter kit here
- 🐳 Added guideline and configuration for running inside docker container.
Before running Laravel inside Docker, please make sure you have installed docker.
- Copy environment, docker-compose and Dockerfile
cp .env.docker.example .env
cp docker-conf/php/local.example docker-conf/php/Dockerfile
cp docker-compose.yml.example docker-compose.yml- Run the following command to build the Docker image:
docker compose buildThis command will download all the necessary dependencies and build the Docker image according to the specifications in the Dockerfile.
- Once the build is complete, run the following command to start the Docker container:
docker-compose up -d- Run migration and seeder to migrate database. Note this command will refresh your databse also.
docker compose exec php php artisan migrate:refresh --seedIf you dont wan't to refresh databse run
docker compose exec php php artisan migrate --seed- Once done, you can visit your website at http://localhost:8900/
If you are using old version, Click to see Laravel 9 Upgrade Guideline
